char/flake

nixos flake

git clone https://git.t4t.associates/char/flake

Charlotte Somonyx: switch to systemd-networkd378b456

main
677 B33 linesraw
1{
2  pkgs,
3  unstable-pkgs,
4  ...
5}:
6{
7  boot.kernelPackages = unstable-pkgs.linuxPackages;
8  boot.supportedFilesystems = [ "zfs" ];
9  boot.zfs.package = unstable-pkgs.zfs;
10  boot.zfs.forceImportRoot = false;
11  boot.zfs.devNodes = "/dev/disk/by-id";
12  services.zfs.trim.enable = true;
13
14  networking.hostName = "onyx";
15  networking.hostId = "8db6cf97";
16  time.timeZone = "Europe/London";
17
18  hardware.graphics.enable = true;
19
20  users.users.charlotte = {
21    isNormalUser = true;
22    description = "charlotte";
23    extraGroups = [
24      "wheel"
25      "video"
26    ];
27    shell = pkgs.zsh;
28  };
29
30  users.users.charlotte.packages = [
31    unstable-pkgs.zed-editor.remote_server
32  ];
33}