added
This commit is contained in:
parent
42aeaf54c8
commit
cb9632b258
5 changed files with 117 additions and 28 deletions
|
|
@ -18,6 +18,11 @@
|
|||
./modules/npm.nix
|
||||
./modules/nixos.nix
|
||||
./modules/appimage.nix
|
||||
./modules/tailscale.nix
|
||||
./modules/rust.nix
|
||||
./modules/python.nix
|
||||
./modules/go.nix
|
||||
./modules/ld.nix
|
||||
];
|
||||
system.stateVersion = "25.11";
|
||||
|
||||
|
|
@ -26,13 +31,12 @@
|
|||
efiSupport = false;
|
||||
};
|
||||
|
||||
programs.fish.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
btop
|
||||
ffmpeg
|
||||
yt-dlp
|
||||
fastfetch
|
||||
zellij
|
||||
busybox
|
||||
xclip
|
||||
direnv
|
||||
];
|
||||
nix = {
|
||||
gc = {
|
||||
|
|
|
|||
|
|
@ -10,12 +10,16 @@
|
|||
PermitRootLogin = "prohibit-password";
|
||||
PasswordAuthentication = false;
|
||||
};
|
||||
extraConfig = ''
|
||||
StreamLocalBindUnlink yes
|
||||
'';
|
||||
};
|
||||
users.users.root.openssh.authorizedKeys.keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK29z1CTXF77ykGyklPM8X3SxeMYM7zHyoIDGi2C9/HU riiidge.racer@gmail.com"
|
||||
];
|
||||
users.users.alteur = {
|
||||
isNormalUser = true;
|
||||
shell = pkgs.fish;
|
||||
extraGroups = ["wheel" "docker"];
|
||||
openssh.authorizedKeys.keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK29z1CTXF77ykGyklPM8X3SxeMYM7zHyoIDGi2C9/HU riiidge.racer@gmail.com"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue