Compare commits
2 commits
d655642142
...
afcaeeece9
Author | SHA1 | Date | |
---|---|---|---|
afcaeeece9 | |||
2874f47a39 |
2 changed files with 13 additions and 6 deletions
|
@ -54,11 +54,11 @@
|
|||
services.displayManager.sddm.wayland.enable = true;
|
||||
services.desktopManager.plasma6.enable = true;
|
||||
|
||||
# Configure keymap in X11
|
||||
services.xserver.xkb = {
|
||||
layout = "us";
|
||||
variant = "";
|
||||
};
|
||||
# Configure keymap in X11 (presumably, XWayland uses something different?)
|
||||
#services.xserver.xkb = {
|
||||
# layout = "us";
|
||||
# variant = "";
|
||||
#};
|
||||
|
||||
# Enable CUPS to print documents.
|
||||
# services.printing.enable = true;
|
||||
|
@ -104,6 +104,8 @@
|
|||
# Add docker!
|
||||
virtualisation.docker.enable = true;
|
||||
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
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
|
@ -116,6 +118,9 @@
|
|||
tmux
|
||||
whois
|
||||
git
|
||||
wl-clipboard-rs
|
||||
dogdns
|
||||
bat
|
||||
];
|
||||
|
||||
nixpkgs.config.permittedInsecurePackages = [
|
||||
|
|
|
@ -18,7 +18,7 @@ in
|
|||
users.users.${cfg.userName} = {
|
||||
isNormalUser = true;
|
||||
initialPassword = "B@dC0d3MangFIX|T";
|
||||
description = "Just a normal admin";
|
||||
description = lib.mkDefault "Just a normal admin";
|
||||
extraGroups = [ "wheel" "networkmanager" "docker" ];
|
||||
packages = with pkgs; [
|
||||
kdePackages.kate
|
||||
|
@ -28,6 +28,8 @@ in
|
|||
z-lua
|
||||
logseq # REQUIRES TEMPORARY INSECURE ELECTRON
|
||||
signal-desktop
|
||||
ddev
|
||||
vscodium
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue