Initial commit

This commit is contained in:
AXOLOTsh
2026-01-28 11:41:51 +03:00
commit c1d66293aa
52 changed files with 817 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
{ self, ... } : {
programs.bash = {
enable = true;
shellAliases = {
editor = "nano";
};
};
}

12
home/mirsem/home.nix Normal file
View File

@@ -0,0 +1,12 @@
{ ... } : {
programs.home-manager.enable = true;
home = {
username = "mirsem";
homeDirectory = "/home/mirsem";
stateVersion = "25.05";
};
imports = [
./index.nix
];
}

9
home/mirsem/index.nix Normal file
View File

@@ -0,0 +1,9 @@
{ self, ... } : {
imports = [
"${self}/home/common/fastfetch.nix"
./bash-aliases.nix
./packages.nix
];
}

3
home/mirsem/packages.nix Normal file
View File

@@ -0,0 +1,3 @@
{ self, pkgs, ... } : {
imports = [ "${self}/home/common/packages.nix" ];
}