Version 1.0.0
This commit is contained in:
parent
0084c7295d
commit
0ae67a9897
11 changed files with 764 additions and 568 deletions
|
|
@ -1,37 +0,0 @@
|
|||
{ config, pkgs, host, lib, inputs, userconf, ... }:
|
||||
|
||||
let
|
||||
username = "YOUR_USER";
|
||||
nixDirectory = "/home/${username}/NixOS";
|
||||
in {
|
||||
################################################################
|
||||
# Module Imports
|
||||
################################################################
|
||||
|
||||
imports = [
|
||||
# Home Manager integration
|
||||
inputs.home-manager.nixosModules.home-manager
|
||||
];
|
||||
|
||||
################################################################
|
||||
# Home Manager Configuration
|
||||
################################################################
|
||||
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
backupFileExtension = "delme-HMbackup";
|
||||
users.${username} = import ./home.nix;
|
||||
|
||||
extraSpecialArgs = {
|
||||
inherit inputs nixDirectory username;
|
||||
};
|
||||
};
|
||||
################################################################
|
||||
# System Version
|
||||
################################################################
|
||||
|
||||
system.stateVersion = "25.05";
|
||||
|
||||
# ... Add more
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue