feat: add new hosts, skadi.
This commit is contained in:
parent
b986b3e284
commit
653ca585ee
5 changed files with 383 additions and 0 deletions
49
hosts/skadi/home.nix
Normal file
49
hosts/skadi/home.nix
Normal file
|
@ -0,0 +1,49 @@
|
|||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
inputs.nvf.homeManagerModules.default
|
||||
inputs.nix-index-database.homeModules.nix-index
|
||||
inputs.nix-flatpak.homeManagerModules.nix-flatpak
|
||||
inputs.agenix.homeManagerModules.default
|
||||
];
|
||||
|
||||
# Some info
|
||||
home.username = "crony";
|
||||
home.homeDirectory = "/home/crony";
|
||||
|
||||
# Enable syncthing
|
||||
services.syncthing.enable = true;
|
||||
|
||||
# Default environmental variables
|
||||
home.sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
TERMINAL = "foot";
|
||||
WINEPREFIX = "$HOME/.local/share/wineprefix/default";
|
||||
SECOND_BRAIN = "$HOME/docs/sb";
|
||||
};
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
# Enable crony flake specific settings
|
||||
crony.mangohud.enable = true;
|
||||
crony.gaming.enable = true;
|
||||
crony.flatpak.enable = true;
|
||||
crony.wayland.enable = true;
|
||||
crony.river.enable = false;
|
||||
crony.hyprland.enable = true;
|
||||
crony.home-secrets.enable = true;
|
||||
crony.restic.enable = true;
|
||||
crony.neovim.enable = true;
|
||||
crony.qutebrowser.enable = true;
|
||||
crony.mpv.enable = true;
|
||||
crony.browsers.enable = true;
|
||||
crony.desktop.enable = true;
|
||||
crony.shell-additions.enable = true;
|
||||
|
||||
# DO NOT CHANGE ALSO
|
||||
home.stateVersion = "24.11"; # Please read the comment before changing.
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue