Revert "[NixOS] Tweaks for kat"

This reverts commit f072eb4b18.
This commit is contained in:
Ivan Malison 2021-01-20 17:57:54 -08:00
parent 07653c4d05
commit 4eac12cf97
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8
2 changed files with 20 additions and 9 deletions

@ -1 +1 @@
Subproject commit c8fe1a41497c2b68ba6c15404125afa7de283e86
Subproject commit d1246c40967abc848b5d7b4f9e69a14f898e995f

View File

@ -161,7 +161,6 @@ in
clipit
feh
gnome3.gpaste
gnome3.gnome-tweaks
kdeconnect
libnotify
lxqt.lxqt-powermanagement
@ -216,6 +215,7 @@ in
carnix
# rls
rustc
rustfmt
# Clojure
boot
@ -340,14 +340,29 @@ in
desktopManager = {
plasma5.enable = true;
};
windowManager = {
session = [
{
name = "xmonad";
start = ''
/usr/bin/env imalison-xmonad &
waitPID=$!
'';
}
];
};
displayManager = {
sddm.enable = true;
sddm = {
enable = true;
};
sessionCommands = ''
systemctl --user import-environment GDK_PIXBUF_MODULE_FILE DBUS_SESSION_BUS_ADDRESS PATH
'';
};
};
virtualisation.docker.enable = true;
users.extraUsers = let
extraGroups = [
"audio"
@ -370,21 +385,17 @@ in
in {
imalison = userDefaults // {
name = "imalison";
uid = 1000;
home = "/home/imalison";
shell = pkgs.zsh;
};
kat = userDefaults // {
name = "kat";
uid = 1001;
home = "/home/kat";
shell = pkgs.zsh;
};
};
nix = {
package = pkgs.nixFlakes;
extraOptions = ''
experimental-features = nix-command flakes
'';
};
nix.trustedUsers = ["imalison" "kat"];
}