diff --git a/configuration.nix b/configuration.nix index 4aab92f..e610813 100755 --- a/configuration.nix +++ b/configuration.nix @@ -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"; } diff --git a/desktop-environment.nix b/desktop-environment.nix index c914401..a072099 100644 --- a/desktop-environment.nix +++ b/desktop-environment.nix @@ -21,6 +21,7 @@ hyprshot wayvnc nerd-fonts.open-dyslexic + nemo-with-extensions ]; services.dbus.enable = true; diff --git a/home-manager.nix b/home-manager.nix index 2792b06..5a43aed 100644 --- a/home-manager.nix +++ b/home-manager.nix @@ -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"; } diff --git a/home/hypr/hyprland.nix b/home/hypr/hyprland.nix index c53d9be..f5439bb 100644 --- a/home/hypr/hyprland.nix +++ b/home/hypr/hyprland.nix @@ -2,5 +2,4 @@ { imports = [ ]; - }