Clear legecy settings
This commit is contained in:
@@ -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";
|
||||
}
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
hyprshot
|
||||
wayvnc
|
||||
nerd-fonts.open-dyslexic
|
||||
nemo-with-extensions
|
||||
];
|
||||
|
||||
services.dbus.enable = true;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
|
||||
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
|
||||
{
|
||||
imports =
|
||||
@@ -20,7 +20,7 @@ in
|
||||
|
||||
# The state version is required and should stay at the version you
|
||||
# originally installed.
|
||||
home.stateVersion = "25.05";
|
||||
home.stateVersion = "25.11";
|
||||
};
|
||||
home-manager.backupFileExtension = "backup";
|
||||
}
|
||||
|
||||
@@ -2,5 +2,4 @@
|
||||
{
|
||||
imports = [
|
||||
];
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user