refactor(nixos): move system config options to main nixos module
This commit is contained in:
parent
bf63f44875
commit
91c2790b62
20 changed files with 124 additions and 149 deletions
|
@ -4,9 +4,9 @@
|
|||
}:
|
||||
{
|
||||
imports = lib.singleton ../common.nix;
|
||||
hostname = "apollo";
|
||||
|
||||
system = {
|
||||
hostname = "apollo";
|
||||
bootloader = "systemd-boot";
|
||||
};
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ let
|
|||
inherit (pkgs) zsh;
|
||||
in
|
||||
{
|
||||
system.mainUser = {
|
||||
mainUser = {
|
||||
name = "rafiq";
|
||||
publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILdsZyY3gu8IGB8MzMnLdh+ClDxQQ2RYG9rkeetIKq8n";
|
||||
email = "rafiq@rrv.sh";
|
||||
|
|
|
@ -3,9 +3,9 @@
|
|||
../common.nix
|
||||
../desktop.nix
|
||||
];
|
||||
hostname = "mellinoe";
|
||||
|
||||
system = {
|
||||
hostname = "mellinoe";
|
||||
bootloader = "systemd-boot";
|
||||
};
|
||||
|
||||
|
|
|
@ -3,9 +3,9 @@
|
|||
../common.nix
|
||||
../desktop.nix
|
||||
];
|
||||
hostname = "nemesis";
|
||||
|
||||
system = {
|
||||
hostname = "nemesis";
|
||||
bootloader = "systemd-boot";
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue