Initial commit
This commit is contained in:
12
home/axolotsh-server/home.nix
Normal file
12
home/axolotsh-server/home.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ ... } : {
|
||||
programs.home-manager.enable = true;
|
||||
home = {
|
||||
username = "axolotsh";
|
||||
homeDirectory = "/home/axolotsh";
|
||||
stateVersion = "25.05";
|
||||
};
|
||||
|
||||
imports = [
|
||||
./index.nix
|
||||
];
|
||||
}
|
||||
9
home/axolotsh-server/index.nix
Normal file
9
home/axolotsh-server/index.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ self, ... } : {
|
||||
imports = [
|
||||
"${self}/home/common/bash-aliases.nix"
|
||||
"${self}/home/common/git.nix"
|
||||
"${self}/home/common/fastfetch.nix"
|
||||
|
||||
./packages.nix
|
||||
];
|
||||
}
|
||||
3
home/axolotsh-server/packages.nix
Normal file
3
home/axolotsh-server/packages.nix
Normal file
@@ -0,0 +1,3 @@
|
||||
{ self, pkgs, ... } : {
|
||||
imports = [ "${self}/home/common/packages.nix" ];
|
||||
}
|
||||
Reference in New Issue
Block a user