all repos — char/flake @ a07cb79013746721c0313fbd8503242bc85e7b67

nixos flake

profiles/onyx/base.nix (view raw)

 1{
 2  pkgs,
 3  unstable-pkgs,
 4  ...
 5}:
 6{
 7  boot.kernelPackages = unstable-pkgs.linuxPackages_latest;
 8
 9  networking.hostName = "onyx";
10  time.timeZone = "Europe/London";
11
12  hardware.graphics.enable = true;
13
14  users.users.charlotte = {
15    isNormalUser = true;
16    description = "charlotte";
17    extraGroups = [
18      "networkmanager"
19      "wheel"
20      "video"
21    ];
22    shell = pkgs.zsh;
23  };
24
25  users.users.charlotte.packages = [
26    unstable-pkgs.zed-editor.remote_server
27  ];
28}