From 32bdc504bcd7c66f7aa67b70ec18895ef5c057b8 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Wed, 6 Mar 2024 18:50:21 +0100 Subject: [PATCH] remove old hm file from server --- hosts/chmura/default.nix | 1 - hosts/chmura/home-manager.nix | 69 ----------------------------------- 2 files changed, 70 deletions(-) delete mode 100644 hosts/chmura/home-manager.nix diff --git a/hosts/chmura/default.nix b/hosts/chmura/default.nix index b7d1564c..3ee979e0 100644 --- a/hosts/chmura/default.nix +++ b/hosts/chmura/default.nix @@ -10,7 +10,6 @@ _: { #./freshrss.nix #./grafana.nix ./hardware-configuration.nix - ./home-manager.nix ./i2pd.nix ./jacekpoz.pl.nix ./ntfy-sh.nix diff --git a/hosts/chmura/home-manager.nix b/hosts/chmura/home-manager.nix deleted file mode 100644 index b643dd96..00000000 --- a/hosts/chmura/home-manager.nix +++ /dev/null @@ -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"; - }; - }; - }; -}