diff options
author | Julian T <julian@jtle.dk> | 2020-09-15 22:44:24 +0200 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2020-09-15 22:46:13 +0200 |
commit | f73e9d5f9abf0410e927264bab0bc8c0ace61538 (patch) | |
tree | 508bc29b4b1826c269a5f1f688b0b8cdf0992efe /configuration.nix | |
parent | 073cd547a42537a64f008b7775262b2012a7b3da (diff) |
Fixed depricated warnings
Diffstat (limited to 'configuration.nix')
-rw-r--r-- | configuration.nix | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/configuration.nix b/configuration.nix index 0e24ab4..565c80d 100644 --- a/configuration.nix +++ b/configuration.nix @@ -39,11 +39,14 @@ # Select internationalisation properties. i18n = { - consoleFont = "Lat2-Terminus16"; - consoleKeyMap = "us"; defaultLocale = "en_DK.UTF-8"; }; + console.keyMap = { + keyMap = "us"; + font = "Lat2-Terminus16"; + }; + # Set your time zone. time.timeZone = "Europe/Copenhagen"; @@ -86,10 +89,17 @@ exportConfiguration = true; windowManager = { - default = "i3"; i3.enable = true; }; + displayManager = { + defaultSession = "none+i3"; + }; + + desktopManager = { + xterm.enable = false; + }; + # Touchpad studd libinput.enable = true; |