Initialize defiant

This commit is contained in:
2023-12-24 17:14:10 +01:00
committed by Felix Albrigtsen
parent c5d970ae4c
commit 07f129c423
3 changed files with 71 additions and 0 deletions

19
hosts/defiant/home.nix Normal file
View File

@@ -0,0 +1,19 @@
{ pkgs, lib, ... }:
{
home.packages = with pkgs; [
bat
bottom
ncdu
neofetch
];
imports = [
./../../home/base.nix
];
programs = {
zsh.shellAliases."rebuild" = "sudo nixos-rebuild switch --flake /config";
};
home.stateVersion = "23.05";
}