mirror of
https://github.com/ellmau/nixos.git
synced 2025-12-19 09:29:36 +01:00
Use xmonad on nucturne
This commit is contained in:
parent
1641bd4a7b
commit
69b6e27c07
@ -1,11 +1,6 @@
|
|||||||
{
|
{ config, pkgs, inputs, nixos-hardware, ... }: {
|
||||||
config,
|
imports =
|
||||||
pkgs,
|
[ ../../common/users.nix ./hardware-configuration.nix ./software.nix ];
|
||||||
inputs,
|
|
||||||
nixos-hardware,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [../../common/users.nix ./hardware-configuration.nix ./software.nix];
|
|
||||||
|
|
||||||
elss = {
|
elss = {
|
||||||
# base system
|
# base system
|
||||||
@ -19,9 +14,10 @@
|
|||||||
# enable X11 with lightdm and i3
|
# enable X11 with lightdm and i3
|
||||||
graphical = {
|
graphical = {
|
||||||
enable = true;
|
enable = true;
|
||||||
sway.enable = true;
|
sway.enable = false;
|
||||||
i3.enable = false;
|
i3.enable = false;
|
||||||
plasma.enable = false;
|
plasma.enable = false;
|
||||||
|
xmonad.enable = true;
|
||||||
# set dpi if used in mobile applications
|
# set dpi if used in mobile applications
|
||||||
# dpi = 180;
|
# dpi = 180;
|
||||||
};
|
};
|
||||||
@ -33,10 +29,10 @@
|
|||||||
openvpn.enable = true;
|
openvpn.enable = true;
|
||||||
|
|
||||||
# nm-networks
|
# nm-networks
|
||||||
networking.nmConnections = [];
|
networking.nmConnections = [ ];
|
||||||
|
|
||||||
# enable sops
|
# enable sops
|
||||||
sops = {enable = true;};
|
sops = { enable = true; };
|
||||||
|
|
||||||
# enable wireguard
|
# enable wireguard
|
||||||
wireguard.enable = true;
|
wireguard.enable = true;
|
||||||
@ -44,17 +40,17 @@
|
|||||||
# user setup
|
# user setup
|
||||||
users = {
|
users = {
|
||||||
enable = true;
|
enable = true;
|
||||||
admins = ["ellmau"];
|
admins = [ "ellmau" ];
|
||||||
users = [];
|
users = [ ];
|
||||||
|
|
||||||
meta = {ellmau.git = {signDefault = true;};};
|
meta = { ellmau.git = { signDefault = true; }; };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
extraModulePackages = [config.boot.kernelPackages.v4l2loopback];
|
extraModulePackages = [ config.boot.kernelPackages.v4l2loopback ];
|
||||||
|
|
||||||
kernelModules = ["v4l2loopback"];
|
kernelModules = [ "v4l2loopback" ];
|
||||||
|
|
||||||
plymouth.enable = true;
|
plymouth.enable = true;
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user