diff --git a/machines/aramis/default.nix b/machines/aramis/default.nix index 67486d1..6eaadeb 100644 --- a/machines/aramis/default.nix +++ b/machines/aramis/default.nix @@ -8,6 +8,7 @@ imports = [ ./boot.nix ./hardware.nix + ./home.nix ./networking.nix ./sound.nix ]; @@ -15,13 +16,6 @@ # Set your time zone. time.timeZone = "Europe/Paris"; - # Enable the X11 windowing system. - # services.xserver.enable = true; - - # Configure keymap in X11 - # services.xserver.layout = "us"; - # services.xserver.xkbOptions = "eurosign:e"; - # Enable CUPS to print documents. services.printing.enable = true; diff --git a/machines/aramis/home.nix b/machines/aramis/home.nix new file mode 100644 index 0000000..ce312c4 --- /dev/null +++ b/machines/aramis/home.nix @@ -0,0 +1,4 @@ +{ ... }: +{ + # To be filled out +}