Clear legecy settings

This commit is contained in:
2026-02-18 21:39:48 +01:00
parent 4a3e8ad43e
commit 291db95a85
4 changed files with 9 additions and 8 deletions

View File

@@ -8,9 +8,9 @@
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
./cron-schedule.nix
./desktop-environment.nix
./terminal-environment.nix
./cron-schedule.nix
./home-manager.nix
];
@@ -44,18 +44,18 @@
# Configure keymap in X11
services.xserver.xkb = {
layout = "de";
layout = "de-latin1";
variant = "";
};
# Configure console keymap
console.keyMap = "de";
console.keyMap = "de-latin1";
# Define a user account. Don't forget to set a password with passwd.
users.users.nichkara = {
isNormalUser = true;
description = "Nina Chloé Kassandra";
extraGroups = [ "networkmanager" "wheel" "docker"];
extraGroups = [ "networkmanager" "wheel" "docker" "scanner" "lp"];
packages = with pkgs; [];
shell = pkgs.zsh;
};
@@ -72,6 +72,7 @@
# Enable the OpenSSH daemon.
services.openssh.enable = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs.config.allowUnfree = true;
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
@@ -79,5 +80,5 @@
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "25.05";
system.stateVersion = "25.11";
}