Compare commits

..

No commits in common. "afcaeeece9f0b6f085d130fb2dd89ac25b829f7c" and "d655642142bb86e3bd6d13d5cfef6eceb7cf47b3" have entirely different histories.

2 changed files with 6 additions and 13 deletions

View file

@ -54,11 +54,11 @@
services.displayManager.sddm.wayland.enable = true; services.displayManager.sddm.wayland.enable = true;
services.desktopManager.plasma6.enable = true; services.desktopManager.plasma6.enable = true;
# Configure keymap in X11 (presumably, XWayland uses something different?) # Configure keymap in X11
#services.xserver.xkb = { services.xserver.xkb = {
# layout = "us"; layout = "us";
# variant = ""; variant = "";
#}; };
# Enable CUPS to print documents. # Enable CUPS to print documents.
# services.printing.enable = true; # services.printing.enable = true;
@ -104,8 +104,6 @@
# Add docker! # Add docker!
virtualisation.docker.enable = true; virtualisation.docker.enable = true;
virtualisation.docker.storageDriver = "btrfs"; # Only when using BTRFS! (wolcen approved!) virtualisation.docker.storageDriver = "btrfs"; # Only when using BTRFS! (wolcen approved!)
# Required for DDEV to add hosts files, if your DNS will not resolve addresses to localhost.
environment.etc.hosts.mode = "0644";
# Allow unfree packages # Allow unfree packages
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
@ -118,9 +116,6 @@
tmux tmux
whois whois
git git
wl-clipboard-rs
dogdns
bat
]; ];
nixpkgs.config.permittedInsecurePackages = [ nixpkgs.config.permittedInsecurePackages = [

View file

@ -18,7 +18,7 @@ in
users.users.${cfg.userName} = { users.users.${cfg.userName} = {
isNormalUser = true; isNormalUser = true;
initialPassword = "B@dC0d3MangFIX|T"; initialPassword = "B@dC0d3MangFIX|T";
description = lib.mkDefault "Just a normal admin"; description = "Just a normal admin";
extraGroups = [ "wheel" "networkmanager" "docker" ]; extraGroups = [ "wheel" "networkmanager" "docker" ];
packages = with pkgs; [ packages = with pkgs; [
kdePackages.kate kdePackages.kate
@ -28,8 +28,6 @@ in
z-lua z-lua
logseq # REQUIRES TEMPORARY INSECURE ELECTRON logseq # REQUIRES TEMPORARY INSECURE ELECTRON
signal-desktop signal-desktop
ddev
vscodium
]; ];
}; };
}; };