home/amneesh: init
This commit is contained in:
7
home/README
Normal file
7
home/README
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
natto : default user for okina (desktop - NixOS Unstable)
|
||||||
|
natto-laptop : default user for satori (laptop - NixOS Unstable)
|
||||||
|
bat : default user for remilia (Oracle VM - NixOS Unstable)
|
||||||
|
spin : default user for hina (Oracle VM - NixOS Unstable)
|
||||||
|
spark : default user for marisa (RPi4 - NixOS Unstable)
|
||||||
|
amneesh : default user for nightbug (Workplace PC - Ubuntu 22.04)
|
||||||
|
|
21
home/amneesh.nix
Normal file
21
home/amneesh.nix
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
{ config, pkgs, inputs, ... }:
|
||||||
|
{
|
||||||
|
home = {
|
||||||
|
homeDirectory = "/home/amneesh";
|
||||||
|
username = "amneesh";
|
||||||
|
stateVersion = "24.05";
|
||||||
|
|
||||||
|
packages = with pkgs; [
|
||||||
|
htop
|
||||||
|
nattovim
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
./natto/emacs.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
xdg.mime.enable = true;
|
||||||
|
targets.genericLinux.enable = true;
|
||||||
|
programs.bash.enable = true;
|
||||||
|
}
|
@@ -19,6 +19,7 @@
|
|||||||
};
|
};
|
||||||
initExtra = ''
|
initExtra = ''
|
||||||
unsetopt extendedGlob
|
unsetopt extendedGlob
|
||||||
|
[[ -f ~/.zsh_custom ]] && source ~/.zsh_custom
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@@ -80,5 +80,13 @@ in
|
|||||||
}] ++ common;
|
}] ++ common;
|
||||||
pkgs = mkPkgs "x86_64-linux";
|
pkgs = mkPkgs "x86_64-linux";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
amneesh = inputs.home-manager.lib.homeManagerConfiguration {
|
||||||
|
inherit extraSpecialArgs;
|
||||||
|
modules = [
|
||||||
|
./amneesh.nix
|
||||||
|
] ++ common;
|
||||||
|
pkgs = mkPkgs "x86_64-linux";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user