test
This commit is contained in:
parent
33379b3974
commit
15afdf081e
3 changed files with 12 additions and 10 deletions
|
@ -68,7 +68,6 @@
|
|||
|
||||
# Home Manager settings
|
||||
home-manager.nixosModules.home-manager {
|
||||
inherit hostname;
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.albert = import ./users/albert/home.nix;
|
||||
|
|
|
@ -1,10 +1,13 @@
|
|||
{ config, pkgs, hostname, ... }: {
|
||||
home.stateVersion = "23.05";
|
||||
imports = [
|
||||
../../hosts/${hostname}/gnome-dconf.nix
|
||||
../../home-manager/git.nix
|
||||
../../home-manager/neovim.nix
|
||||
../../home-manager/bash.nix
|
||||
../../home-manager/firefox.nix
|
||||
];
|
||||
let hostname = ${hostname}
|
||||
in {
|
||||
home.stateVersion = "23.05";
|
||||
imports = [
|
||||
../../hosts/${hostname}/gnome-dconf.nix
|
||||
../../home-manager/git.nix
|
||||
../../home-manager/neovim.nix
|
||||
../../home-manager/bash.nix
|
||||
../../home-manager/firefox.nix
|
||||
];
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
{ config, pkgs, ... }: {
|
||||
{ config, pkgs, hostname, ... }: {
|
||||
home.stateVersion = "23.05";
|
||||
imports = [
|
||||
../../home-manager/git.nix
|
||||
|
|
Loading…
Reference in a new issue