forked from colonelpanic/dotfiles
[NixOS] Move desktop stuff out of base.nix
This commit is contained in:
parent
a05cb56d60
commit
31494a27fb
@ -16,11 +16,8 @@
|
|||||||
|
|
||||||
nixpkgs.overlays = with inputs; [
|
nixpkgs.overlays = with inputs; [
|
||||||
nix.overlays.default
|
nix.overlays.default
|
||||||
xmonad.overlay
|
|
||||||
xmonad-contrib.overlay
|
|
||||||
notifications-tray-icon.overlay
|
|
||||||
(import ./overlay.nix)
|
(import ./overlay.nix)
|
||||||
] ++ taffybar.overlays;
|
];
|
||||||
|
|
||||||
# Allow all the things
|
# Allow all the things
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
@ -72,7 +69,7 @@
|
|||||||
services.blueman.enable = true;
|
services.blueman.enable = true;
|
||||||
|
|
||||||
# Printing
|
# Printing
|
||||||
# services.printing.enable = true;
|
services.printing.enable = true;
|
||||||
|
|
||||||
# Keyboard/Keymap
|
# Keyboard/Keymap
|
||||||
console.keyMap = "us";
|
console.keyMap = "us";
|
||||||
@ -91,8 +88,6 @@
|
|||||||
|
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
|
|
||||||
services.autorandr.enable = true;
|
|
||||||
|
|
||||||
services.locate.enable = true;
|
services.locate.enable = true;
|
||||||
|
|
||||||
virtualisation.docker.enable = true;
|
virtualisation.docker.enable = true;
|
||||||
@ -102,32 +97,4 @@
|
|||||||
services.logind.extraConfig = "RuntimeDirectorySize=5G";
|
services.logind.extraConfig = "RuntimeDirectorySize=5G";
|
||||||
|
|
||||||
services.dbus.packages = [ pkgs.gcr ];
|
services.dbus.packages = [ pkgs.gcr ];
|
||||||
|
|
||||||
services.xserver = {
|
|
||||||
exportConfiguration = true;
|
|
||||||
enable = true;
|
|
||||||
layout = "us";
|
|
||||||
desktopManager = {
|
|
||||||
plasma5.enable = true;
|
|
||||||
};
|
|
||||||
windowManager = {
|
|
||||||
session = [
|
|
||||||
{
|
|
||||||
name = "xmonad";
|
|
||||||
start = ''
|
|
||||||
/usr/bin/env imalison-xmonad &
|
|
||||||
waitPID=$!
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
displayManager = {
|
|
||||||
sddm = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
sessionCommands = ''
|
|
||||||
systemctl --user import-environment GDK_PIXBUF_MODULE_FILE DBUS_SESSION_BUS_ADDRESS PATH
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
41
nixos/desktop.nix
Normal file
41
nixos/desktop.nix
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
{ config, pkgs, options, inputs, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./fonts.nix
|
||||||
|
];
|
||||||
|
nixpkgs.overlays = with inputs; [
|
||||||
|
xmonad.overlay
|
||||||
|
xmonad-contrib.overlay
|
||||||
|
notifications-tray-icon.overlay
|
||||||
|
] ++ taffybar.overlays;
|
||||||
|
|
||||||
|
services.autorandr.enable = true;
|
||||||
|
|
||||||
|
services.xserver = {
|
||||||
|
exportConfiguration = true;
|
||||||
|
enable = true;
|
||||||
|
layout = "us";
|
||||||
|
desktopManager = {
|
||||||
|
plasma5.enable = true;
|
||||||
|
};
|
||||||
|
windowManager = {
|
||||||
|
session = [
|
||||||
|
{
|
||||||
|
name = "xmonad";
|
||||||
|
start = ''
|
||||||
|
/usr/bin/env imalison-xmonad &
|
||||||
|
waitPID=$!
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
displayManager = {
|
||||||
|
sddm = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
sessionCommands = ''
|
||||||
|
systemctl --user import-environment GDK_PIXBUF_MODULE_FILE DBUS_SESSION_BUS_ADDRESS PATH
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
@ -10,6 +10,8 @@
|
|||||||
../essential-no-arm.nix
|
../essential-no-arm.nix
|
||||||
../essential.nix
|
../essential.nix
|
||||||
../code.nix
|
../code.nix
|
||||||
|
../essential.nix
|
||||||
|
../desktop.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
hardware.enableRedistributableFirmware = true;
|
hardware.enableRedistributableFirmware = true;
|
||||||
|
@ -6,6 +6,8 @@
|
|||||||
../full.nix
|
../full.nix
|
||||||
../dfinity.nix
|
../dfinity.nix
|
||||||
../games.nix
|
../games.nix
|
||||||
|
../essential.nix
|
||||||
|
../desktop.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
Loading…
Reference in New Issue
Block a user