refactor(modules/system): move system config to a module
This commit is contained in:
parent
62f94ad85e
commit
cb01ba95b0
7 changed files with 65 additions and 23 deletions
16
modules/nixos/system/default.nix
Normal file
16
modules/nixos/system/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ config, lib, ...}:
|
||||
{
|
||||
imports = [
|
||||
./users.nix
|
||||
./localisation.nix
|
||||
./nix-config.nix
|
||||
];
|
||||
|
||||
options.system = {
|
||||
mainUser = lib.pantheon.mkStrOption;
|
||||
};
|
||||
|
||||
config = {
|
||||
system.stateVersion = "25.05"; # Did you read the comment?
|
||||
};
|
||||
}
|
9
modules/nixos/system/localisation.nix
Normal file
9
modules/nixos/system/localisation.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
config = lib.mkMerge [
|
||||
{
|
||||
time.timeZone = "Asia/Singapore";
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
}
|
||||
];
|
||||
}
|
6
modules/nixos/system/nix-config.nix
Normal file
6
modules/nixos/system/nix-config.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
config = {
|
||||
nix.settings.experimental-features = ["nix-command" "flakes"];
|
||||
};
|
||||
}
|
18
modules/nixos/system/users.nix
Normal file
18
modules/nixos/system/users.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
config = lib.mkMerge [
|
||||
{
|
||||
users.users."${config.system.mainUser}" = {
|
||||
isNormalUser = true;
|
||||
initialPassword = "1";
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
];
|
||||
packages = with pkgs; [
|
||||
git
|
||||
neovim
|
||||
];
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue