aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configuration.nix44
-rw-r--r--git/mrconfig.inibin12148 -> 11694 bytes
2 files changed, 44 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix
new file mode 100644
index 0000000..0756d89
--- /dev/null
+++ b/configuration.nix
@@ -0,0 +1,44 @@
+{ config, pkgs, ... }:
+
+{
+ imports =
+ [ # Include the results of the hardware scan.
+ ./hardware-configuration.nix
+ ];
+
+ # Use the systemd-boot EFI boot loader.
+ boot.loader.systemd-boot.enable = true;
+ boot.loader.efi.canTouchEfiVariables = true;
+ boot.initrd.luks.devices = [
+ {
+ name = "root";
+ device = "/dev/sda3";
+ preLVM = true;
+ }
+ ];
+
+ environment.systemPackages = with pkgs; [
+ wget vim
+ ];
+
+ services = {
+ xserver = {
+ enable = true;
+ windowManager.default = "xmonad";
+ windowManager.xmonad = {
+ enable = true;
+ enableContribAndExtras = true;
+ };
+ desktopManager = {
+ default = "none";
+ xterm.enable = false;
+ gnome3.enable = true;
+ };
+ displayManager = {
+ lightdm.enable = true;
+ };
+ };
+ };
+
+ system.stateVersion = "19.03"; # Did you read the comment?
+}
diff --git a/git/mrconfig.ini b/git/mrconfig.ini
index 053db14..ae02cb9 100644
--- a/git/mrconfig.ini
+++ b/git/mrconfig.ini
Binary files differ