feat: move some imports to common
This commit is contained in:
parent
c40db05893
commit
b756651051
2 changed files with 9 additions and 15 deletions
common
|
@ -1,4 +1,9 @@
|
|||
({ nixpkgs, home-manager, lib, ... }: {
|
||||
{ home-manager, lib, nixpkgs, nur, ... }: {
|
||||
imports = [
|
||||
home-manager.nixosModules.default
|
||||
./overlays/list.nix
|
||||
];
|
||||
|
||||
# Select internationalisation properties.
|
||||
i18n.defaultLocale = "en_CA.UTF-8";
|
||||
console = {
|
||||
|
@ -27,6 +32,7 @@
|
|||
home-manager.users = let
|
||||
default = {
|
||||
imports = [
|
||||
nur.hmModules.nur
|
||||
./modules/neovim
|
||||
./modules/bash
|
||||
];
|
||||
|
@ -36,8 +42,4 @@
|
|||
root = default;
|
||||
matt = default;
|
||||
};
|
||||
|
||||
imports = [
|
||||
./overlays/list.nix
|
||||
];
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue