Base of Nix Configuration
This commit is contained in:
Executable
+28
@@ -0,0 +1,28 @@
|
||||
{
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = [
|
||||
./configurations/gnome.nix
|
||||
./configurations/firefox.nix
|
||||
./configurations/ghostty.nix
|
||||
./configurations/zed.nix
|
||||
];
|
||||
|
||||
nixpkgs = {
|
||||
overlays = [
|
||||
inputs.self.overlays.additions
|
||||
inputs.self.overlays.modifications
|
||||
inputs.self.overlays.unstable-packages
|
||||
];
|
||||
};
|
||||
|
||||
home = {
|
||||
username = "alistreaza";
|
||||
homeDirectory = "/home/alistreaza";
|
||||
};
|
||||
|
||||
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
||||
system.stateVersion = "25.11";
|
||||
}
|
||||
Reference in New Issue
Block a user