forked from poz/niksos
remove old hm file from server
This commit is contained in:
parent
237dbd9422
commit
32bdc504bc
2 changed files with 0 additions and 70 deletions
|
@ -10,7 +10,6 @@ _: {
|
|||
#./freshrss.nix
|
||||
#./grafana.nix
|
||||
./hardware-configuration.nix
|
||||
./home-manager.nix
|
||||
./i2pd.nix
|
||||
./jacekpoz.pl.nix
|
||||
./ntfy-sh.nix
|
||||
|
|
|
@ -1,69 +0,0 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
inputs,
|
||||
pkgs,
|
||||
self,
|
||||
...
|
||||
}: let
|
||||
username = config.myOptions.other.system.username;
|
||||
in {
|
||||
home-manager = {
|
||||
useUserPackages = true;
|
||||
useGlobalPkgs = true;
|
||||
extraSpecialArgs = {inherit inputs self;};
|
||||
users.${username} = {
|
||||
programs = {
|
||||
home-manager.enable = true;
|
||||
direnv = {
|
||||
enable = true;
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
home = {
|
||||
inherit username;
|
||||
homeDirectory = "/home/${username}";
|
||||
packages = with pkgs; [
|
||||
git
|
||||
eza
|
||||
ripgrep
|
||||
unzip
|
||||
trash-cli
|
||||
dig
|
||||
xdg-ninja
|
||||
auto-cpufreq
|
||||
gnupg
|
||||
age
|
||||
fd
|
||||
asciinema
|
||||
asciinema-agg
|
||||
du-dust
|
||||
file
|
||||
hyfetch
|
||||
git-annex
|
||||
croc
|
||||
uutils-coreutils
|
||||
imagemagick
|
||||
psmisc
|
||||
nnn
|
||||
jq
|
||||
fq
|
||||
gnumake
|
||||
gdb
|
||||
tea
|
||||
codeberg-cli
|
||||
progress
|
||||
parallel
|
||||
p7zip
|
||||
xxd
|
||||
lshw
|
||||
tree
|
||||
smartmontools
|
||||
];
|
||||
|
||||
stateVersion = lib.mkDefault "23.11";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue