summaryrefslogtreecommitdiff
path: root/configuration.nix
blob: 0f42365b14892bddb2fed7a74e0b68e2b8a5ed6a (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
{
  lib,
  machine,
  ...
}: {
  boot.loader = {
    efi.canTouchEfiVariables = true;
    systemd-boot.enable = true;
  };
  environment.persistence."/nix/persist" = {
    enable = true;
    hideMounts = true;
    directories = [
      "/var/log"
      "/var/lib/bluetooth"
      "/var/lib/nixos"
      "/var/lib/systemd/coredump"
      "/etc/NetworkManager/system-connections"
    ];
    files = [
      "/etc/machine-id"
      "/etc/ly/save.txt"
    ];
    users."andromeda" = {
      directories = [
        ".backups"
        ".local/share/Anki2"
        ".local/share/chat.fluffy.fluffychat"
        ".local/share/zoxide"
        ".ssh"
        "conf"
        "Downloads"
        "pp"
      ];
      files = [
        ".bash_history"
        ".brush_history"
      ];
    };
  };
  hardware.bluetooth = {
    enable = true;
    powerOnBoot = true;
  };
  i18n.defaultLocale = "de_DE.UTF-8";
  networking = {
    dhcpcd.enable = true;
    firewall.enable = true;
    hostName = machine.hostname;
    networkmanager.enable = true;
  };
  nix.settings.experimental-features = [
    "nix-command"
    "flakes"
  ];
  nixpkgs.config.allowUnfreePredicate = pkg:
    builtins.elem (lib.getName pkg) [
      "steam"
      "steam-original"
      "steam-unwrapped"
      "steam-run"
    ];
  programs = {
    noshell.enable = true;
    steam.enable = true;
    sway.enable = true;
  };
  services = {
    blueman.enable = true;
    displayManager = {
      enable = true;
      ly.enable = true;
    };
    libinput.enable = true;
    printing.enable = true;
  };
  system.stateVersion = "26.05";
  time.timeZone = "Europe/Berlin";
  users.users."andromeda" = {
    isNormalUser = true;
    description = "andromeda";
    initialPassword = "password";
    extraGroups = [
      "networkmanager"
      "wheel"
    ];
  };
}