all repos — char/flake @ 70c73b611b5c9189c28450ff948760ab3732fc80

nixos flake

profiles/onyx/base.nix (view raw)

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