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

View File

@@ -21,6 +21,7 @@
hyprshot hyprshot
wayvnc wayvnc
nerd-fonts.open-dyslexic nerd-fonts.open-dyslexic
nemo-with-extensions
]; ];
services.dbus.enable = true; services.dbus.enable = true;

View File

@@ -1,7 +1,7 @@
{ config, pkgs, lib, ... }: { config, pkgs, lib, ... }:
let let
home-manager = builtins.fetchTarball https://github.com/nix-community/home-manager/archive/release-25.05.tar.gz; home-manager = builtins.fetchTarball https://github.com/nix-community/home-manager/archive/release-25.11.tar.gz;
in in
{ {
imports = imports =
@@ -20,7 +20,7 @@ in
# The state version is required and should stay at the version you # The state version is required and should stay at the version you
# originally installed. # originally installed.
home.stateVersion = "25.05"; home.stateVersion = "25.11";
}; };
home-manager.backupFileExtension = "backup"; home-manager.backupFileExtension = "backup";
} }

View File

@@ -2,5 +2,4 @@
{ {
imports = [ imports = [
]; ];
} }