From dfee38f4370c8556ec408f081b92b3b9b56f98d6 Mon Sep 17 00:00:00 2001 From: Christoph Cullmann Date: Tue, 2 Jul 2024 19:54:05 +0200 Subject: sort home manager settings --- common.nix | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'common.nix') diff --git a/common.nix b/common.nix index a0a7a8e..88582f5 100644 --- a/common.nix +++ b/common.nix @@ -1,21 +1,17 @@ { config, pkgs, ... }: let impermanence = builtins.fetchTarball "https://github.com/nix-community/impermanence/archive/master.tar.gz"; - home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz"; in { # # stuff shared between home machines # - # get impermanence & home manager working + # get impermanence working & include more shared parts imports = [ # manage persistent files "${impermanence}/nixos.nix" - # home manager for per user config - "${home-manager}/nixos" - # our users "/data/nixos/users.nix" ]; @@ -278,12 +274,6 @@ in systemd.targets.hibernate.enable = false; systemd.targets.hybrid-sleep.enable = false; - # let home manager install stuff to /etc/profiles - home-manager.useUserPackages = true; - - # use global pkgs - home-manager.useGlobalPkgs = true; - # allow unfree packages nixpkgs.config.allowUnfree = true; -- cgit v1.2.3