inital
This commit is contained in:
19
modules/home-manager.nix
Normal file
19
modules/home-manager.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
# ./modules/home.nix
|
||||
# Define and configure users and userspace
|
||||
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
let
|
||||
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/release-25.05.tar.gz";
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
(import "${home-manager}/nixos")
|
||||
./users.nix
|
||||
./users/psljr/home.nix
|
||||
];
|
||||
|
||||
# Set the home manager backup file extension, enabling 'nixos-rebuild switch'
|
||||
home-manager.backupFileExtension = "bak";
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user