2023-10-02 17:47:47 +00:00
|
|
|
{ pkgs, ... }: rec {
|
2023-10-03 22:13:57 +00:00
|
|
|
imports = [
|
|
|
|
./cachix.nix
|
|
|
|
];
|
2023-10-02 17:47:47 +00:00
|
|
|
|
2023-10-02 18:30:34 +00:00
|
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
|
|
|
2023-10-02 17:47:47 +00:00
|
|
|
boot.tmp.cleanOnBoot = true;
|
2023-10-06 15:16:48 +00:00
|
|
|
boot.supportedFilesystems = [ "ntfs" ];
|
2023-10-02 17:47:47 +00:00
|
|
|
nix.settings.auto-optimise-store = true;
|
|
|
|
|
|
|
|
services.journald.extraConfig = ''
|
|
|
|
SystemMaxUse=100M
|
|
|
|
MaxFileSec=7day
|
|
|
|
'';
|
|
|
|
|
|
|
|
programs.fish.enable = true;
|
|
|
|
programs.htop = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
hide_kernel_threads = true;
|
|
|
|
hide_userland_threads = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
users.users.ash = {
|
|
|
|
description = "Ashley";
|
|
|
|
isNormalUser = true;
|
|
|
|
shell = pkgs.fish;
|
|
|
|
openssh.authorizedKeys.keys = [
|
|
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKGLHqRBcN584SXXa7snrOs89Wy5Jjvsq+GlFXTTBYfp ash@ash-pc"
|
|
|
|
];
|
|
|
|
hashedPassword = "$y$j9T$YZw49GYsZi6pm5MH3W2gX1$BKPBL3g4jAWUJP0WY0lRrBLorxzcENVqGTG0dAly3v7";
|
2023-10-13 19:32:20 +00:00
|
|
|
extraGroups = [ "wheel" "audio" "dialout" ];
|
2023-10-02 17:47:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
security.doas.enable = true;
|
|
|
|
security.doas.wheelNeedsPassword = false;
|
|
|
|
|
|
|
|
users.users.root.openssh.authorizedKeys.keys = users.users.ash.openssh.authorizedKeys.keys;
|
|
|
|
|
|
|
|
users.mutableUsers = false;
|
|
|
|
|
|
|
|
console.keyMap = "uk";
|
2023-10-03 00:15:19 +00:00
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
git
|
|
|
|
helix
|
|
|
|
];
|
2023-10-02 17:47:47 +00:00
|
|
|
}
|