added default.nix to module users
This commit is contained in:
parent
2c08c0bd11
commit
157288dced
|
@ -1,16 +1,10 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
let
|
||||
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/release-23.11.tar.gz";
|
||||
in
|
||||
{
|
||||
{ config, pkgs, lib, ... }: {
|
||||
imports = [
|
||||
# Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
(import "${home-manager}/nixos")
|
||||
./nix-settings.nix
|
||||
./boot.nix
|
||||
./users/servostar/user.nix
|
||||
./users
|
||||
./.luks-swap.nix
|
||||
./fonts.nix
|
||||
./extra
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
let
|
||||
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/release-23.11.tar.gz";
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
(import "${home-manager}/nixos")
|
||||
./servostar/user.nix
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue