This commit is contained in:
biscuit
2025-05-06 14:58:15 -05:00
parent e209ddd352
commit 6f6145f1c0
6 changed files with 131 additions and 30 deletions
+9 -2
View File
@@ -43,7 +43,6 @@
isNormalUser = true;
description = "Biscuit";
extraGroups = [ "networkmanager" "wheel" ];
initialPassword = "biscuitforeveryone";
packages = with pkgs;
[];
};
@@ -53,6 +52,8 @@
vim # Default editor
wget
git
neovim
home-manager
];
# Enable the OpenSSH daemon.
@@ -60,7 +61,13 @@
# Enable experimental features
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs = {
overlays = [
(final: prev: {
nvchad = inputs.nvchad4nix.packages.${pkgs.system}.nvchad;
})
];
};
# System state version
system.stateVersion = "24.11"; # Ensure this matches your NixOS version
}