Moved code to separate files. Rofi config in home-manager. Moved home.nix to /home. Scripts to format and rebuild
54 lines
1.0 KiB
Nix
54 lines
1.0 KiB
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
./nixvim
|
|
./rofi
|
|
./wlogout
|
|
];
|
|
|
|
# Home Manager needs a bit of information about you and the
|
|
# paths it should manage.
|
|
home = {
|
|
username = "martin";
|
|
homeDirectory = "/home/martin";
|
|
# You can update Home Manager without changing this value. See
|
|
# the Home Manager release notes for a list of state version
|
|
# changes in each release.
|
|
stateVersion = "24.11";
|
|
};
|
|
|
|
programs = {
|
|
git = {
|
|
enable = true;
|
|
userName = "Martin Berg Alstad";
|
|
userEmail = "git@martials.no";
|
|
};
|
|
|
|
# Let Home Manager install and manage itself.
|
|
home-manager.enable = true;
|
|
|
|
kitty.enable = true;
|
|
|
|
starship = {
|
|
enable = true;
|
|
settings = (with builtins; fromTOML (readFile ./starship.toml)) // { };
|
|
};
|
|
|
|
# Lock desktop
|
|
swaylock.enable = true;
|
|
};
|
|
|
|
services = {
|
|
gpg-agent = {
|
|
enable = true;
|
|
pinentryPackage = pkgs.pinentry-curses;
|
|
};
|
|
};
|
|
}
|