feat: add Rick host (Nix on Debian)
This commit is contained in:
parent
7b22abd626
commit
18929340d0
5 changed files with 66 additions and 0 deletions
13
flake.nix
13
flake.nix
|
@ -80,5 +80,18 @@ in {
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
homeConfigurations = {
|
||||||
|
rick = home-manager.lib.homeManagerConfiguration {
|
||||||
|
pkgs = nixpkgs.legacyPackages.aarch64-linux;
|
||||||
|
extraSpecialArgs = {
|
||||||
|
inherit stateVersion inputs;
|
||||||
|
hostname = "rick";
|
||||||
|
username = "ephase";
|
||||||
|
};
|
||||||
|
modules = [
|
||||||
|
./home-manager/default.nix
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
BIN
hosts/rick/files/background.png
Normal file
BIN
hosts/rick/files/background.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 MiB |
BIN
hosts/rick/files/lockscreen.png
Normal file
BIN
hosts/rick/files/lockscreen.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 117 KiB |
45
hosts/rick/home-config.nix
Normal file
45
hosts/rick/home-config.nix
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
{ ... }: {
|
||||||
|
config.modules = {
|
||||||
|
application = {
|
||||||
|
gnupg.enable = true;
|
||||||
|
zathura.enable = true;
|
||||||
|
foot.enable = true;
|
||||||
|
};
|
||||||
|
cli = {
|
||||||
|
direnv.enable = true;
|
||||||
|
ghq.enable = true;
|
||||||
|
git.enable = true;
|
||||||
|
neovim.enable = true;
|
||||||
|
starship.enable = true;
|
||||||
|
utils.enable = true;
|
||||||
|
vifm.enable = true;
|
||||||
|
zsh.enable = true;
|
||||||
|
};
|
||||||
|
video = {
|
||||||
|
kdenlive.enable = false;
|
||||||
|
mpv.enable = true;
|
||||||
|
};
|
||||||
|
web.firefox.enable = true;
|
||||||
|
web.qutebrowser.enable = false;
|
||||||
|
web.webcord.enable = false;
|
||||||
|
gaming.lutris.enable = false;
|
||||||
|
desktop.sway = {
|
||||||
|
enable = true;
|
||||||
|
installPackage = false;
|
||||||
|
kanshi = false;
|
||||||
|
wallpapers.lockscreen = "${./files/lockscreen.png}";
|
||||||
|
wallpapers.desktop = "${./files/background.png} fill #000000";
|
||||||
|
waybar = {
|
||||||
|
laptop = true;
|
||||||
|
gpuThermal = {
|
||||||
|
enable = false;
|
||||||
|
};
|
||||||
|
cpuThermal = {
|
||||||
|
thermalZone = "2";
|
||||||
|
# hwmonPathAbs = "";
|
||||||
|
# inputFilename = "";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
8
hosts/rick/includes/home-manager.nix
Normal file
8
hosts/rick/includes/home-manager.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
_:
|
||||||
|
{
|
||||||
|
wayland.windowManager.sway.config.output = {
|
||||||
|
"eDP-1" = {
|
||||||
|
scale = "1.3";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue