aboutsummaryrefslogtreecommitdiff
path: root/srv/hadante/configuration.nix
blob: 352a0b8afac547cee698f4cb350366143d3d500a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
# Edit this configuration file to define what should be installed on
# your system.  Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running ‘nixos-help’).

{
  config,
  pkgs,
  inputs,
  ...
}:
let
  lib = pkgs.lib;
in
{
  imports = [
    # Include the results of the hardware scan.
    ./hardware-configuration.nix
    ../../modules/desktop/zerotierone
    inputs.home-manager.nixosModules.home-manager
    ./agenix.nix
    ./waybar.nix
    ./mako.nix
    ./fjordlauncher.nix
    ./fuzzel.nix
    ./vintage-story.nix
    ./colemak.nix
  ];

  options = {
    user = lib.mkOption {
      type = lib.types.uniq lib.types.str;
      description = "The main user name";

    };
  };
  config = {
    nixpkgs = {
      config.allowUnfree = true;
    };
    # Bootloader.
    boot.loader.systemd-boot.enable = true;
    boot.loader.efi.canTouchEfiVariables = true;

    boot.kernel.sysctl = {
      "kernel.perf_event_paranoid" = 1;
      "kernel.kptr_restrict" = lib.mkForce 0;
    };

    networking.hostName = "hadante"; # Define your hostname.
    user = "nea";

    # Use lesbian nix
    nix.package = pkgs.lix;

    # Enable networking
    networking = {

      networkmanager.enable = true;
      # Local network is behind a router anyway.
      firewall.enable = false;
    };

    # Set your time zone.
    time.timeZone = "Europe/Berlin";

    # Select internationalisation properties.
    i18n.defaultLocale = "en_US.UTF-8";

    i18n.extraLocaleSettings = {
      LC_ADDRESS = "de_DE.UTF-8";
      LC_IDENTIFICATION = "de_DE.UTF-8";
      LC_MEASUREMENT = "de_DE.UTF-8";
      LC_MONETARY = "de_DE.UTF-8";
      LC_NAME = "de_DE.UTF-8";
      LC_NUMERIC = "de_DE.UTF-8";
      LC_PAPER = "de_DE.UTF-8";
      LC_TELEPHONE = "de_DE.UTF-8";
      LC_TIME = "de_DE.UTF-8";
    };

    services = {

      sshd.enable = true;
    };
    services.gnome.gnome-keyring.enable = true;
    security.pam.services = {
      greetd.enableGnomeKeyring = true;
      greetd-pasword.enableGnomeKeyring = true;
      login.enableGnomeKeyring = true;
    };
    services.dbus.packages = [
      pkgs.gnome-keyring
      pkgs.gcr
    ];

    # Enable the GNOME Desktop Environment.
    services.displayManager.ly = {
      settings = {
        animation = "matrix";
        default_input = "password";
        text_in_center = true;
      };
      enable = true;
    };
    # Configure keymap in X11
    services.xserver.xkb = {
      layout = "de";
      variant = "";
    };

    # Configure console keymap
    console.keyMap = "de";

    # Enable CUPS to print documents.
    services.printing.enable = true;

    # Enable sound with pipewire.
    hardware.pulseaudio.enable = false;
    security.rtkit.enable = true;
    security.sudo.wheelNeedsPassword = false;
    services.pipewire = {
      enable = true;
      alsa.enable = true;
      alsa.support32Bit = true;
      pulse.enable = true;
      # If you want to use JACK applications, uncomment this
      #jack.enable = true;

      # use the example session manager (no others are packaged yet so this is enabled by default,
      # no need to redefine it in your config for now)
      #media-session.enable = true;
    };

    # Enable touchpad support (enabled default in most desktopManager).
    # services.xserver.libinput.enable = true;

    # Define a user account. Don't forget to set a password with ‘passwd’.
    users.users.${config.user} = {
      isNormalUser = true;
      description = "Linnea Gräf";
      extraGroups = [
        "networkmanager"
        "wheel"
      ];
      packages = with pkgs; [
        #  thunderbird
      ];
    };
    users.defaultUserShell = pkgs.zsh;
    services.xserver.exportConfiguration = true;
    programs = {
      nh = {
        enable = true;
        clean.enable = true;
        clean.extraArgs = "--keep-since 4d --keep 3";
        flake = "/home/${config.user}/nix-infra";
      };
      nix-ld = {
        enable = true;
        libraries = with pkgs; [
          flite
          openssl
          libz
          wayland
          libpulseaudio
        ];
      };
      noisetorch.enable = true;

      obs-studio = {
        enable = true;
      };
      firefox.enable = true;

      gnupg.agent = {
        enable = true;
        enableSSHSupport = true;
        pinentryPackage = pkgs.pinentry-qt;
      };
      git = {
        enable = true;
        lfs.enable = true;
      };
      direnv = {
        enable = true;
        nix-direnv.enable = true;
      };
      zsh = {
        enable = true;
        shellInit = ''
          export ZDOTDIR=~/.config/zsh
        '';
      };

      steam.enable = true;
    };
    nix.settings.experimental-features = [
      "nix-command"
      "flakes"
    ];

    fonts.packages = with pkgs; [

      nerd-fonts.comic-shanns-mono
      nerd-fonts.blex-mono
      symbola

    ];

    xdg.portal = {
      enable = true;
      config.common.default = "*";
      wlr = {
        enable = true;
        settings = {
          screencast = {
            chooser_type = "simple";
            chooser_cmd = "${pkgs.slurp}/bin/slurp -f %o -or";
          };
        };
      };
    };

    home-manager.users.${config.user} = {
      imports = [
        inputs.catppuccin.homeModules.catppuccin
      ];

      home.file =
        let
          javas = {
            jdk21 = pkgs.jdk21;
            jdk24 = pkgs.jdk24;
            jdk17 = pkgs.jdk17;
            jdk11 = pkgs.jdk11;
            jdk8 = pkgs.jdk8;
          };
        in

        (lib.attrsets.mapAttrs' (
          label: package:
          lib.attrsets.nameValuePair (".jdks/" + label) {
            source = package;
          }
        ) javas)
        // {
          ".gradle/gradle.properties".source =
            (pkgs.formats.javaProperties { }).generate "gradle.properties"
              {
                "org.gradle.java.installations.paths" = builtins.concatStringsSep "," (
                  builtins.map (name: "/home/" + config.user + "/.jdks/" + name + "/lib/openjdk") (
                    builtins.attrNames javas
                  )
                );
              };
          ".cargo/config.toml".source = (pkgs.formats.toml { }).generate "config.toml" {
            net.git-fetch-with-cli = true;
          };
        };
      home.stateVersion = "25.05";
    };

    environment.systemPackages = (
      with pkgs;
      [
        neovim
        atuin
        zsh
        yadm
        openssl
        xxd
        pinentry-qt
        emacs
        atuin
        ffmpeg
        thunderbird
        sway
        webp-pixbuf-loader
        delta

        wezterm

        vesktop
        ripgrep

        stackpkgs.audiorelay

        godot

        mumble

        reuse

        jdk8
        jdk17
        jdk21
        jdk23

        sbctl

        wl-clipboard

        jetbrains.idea-ultimate
        jetbrains.rust-rover

        unar

        calibre

        electrum
        xorg.xhost

        krita

        myss

        jextract-21

        bolt-launcher

        zellij

        vscode
        gamescope
        nil
        google-chrome
        pwvucontrol

        heroic

        adwaita-icon-theme

        unzip
        file
        zip
        p7zip

        gh
        ausweisapp

        telegram-desktop

        alejandra

        swaykill
        protontricks

        space-station-14-launcher

        element-desktop

        renderdoc

        foot
        ente-auth
      ]
    );
    system.stateVersion = "25.05";
  };
}