Changed: Stufff

This commit is contained in:
DerGrumpf 2025-04-05 15:40:23 +02:00
parent 1681978386
commit 92e42f092d
5 changed files with 22 additions and 44 deletions

View File

@ -7,7 +7,7 @@
./hyprpaper.nix ./hyprpaper.nix
./waybar # Status Bar ./waybar # Status Bar
./rofi # App Launcher ./rofi # App Launcher
./mako.nix # Notifyer ./mako.nix # Notifyer
]; ];
} }

View File

@ -35,24 +35,6 @@
# Enable networking # Enable networking
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
# Set your time zone.
time.timeZone = "Europe/Berlin";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "de_DE.UTF-8";
LC_IDENTIFICATION = "de_DE.UTF-8";
LC_MEASUREMENT = "de_DE.UTF-8";
LC_MONETARY = "de_DE.UTF-8";
LC_NAME = "de_DE.UTF-8";
LC_NUMERIC = "de_DE.UTF-8";
LC_PAPER = "de_DE.UTF-8";
LC_TELEPHONE = "de_DE.UTF-8";
LC_TIME = "de_DE.UTF-8";
};
# Configure keymap in X11 # Configure keymap in X11
services.xserver.xkb = { services.xserver.xkb = {
layout = "de"; layout = "de";

View File

@ -9,9 +9,9 @@
}; };
};*/ };*/
services.displayManager = { /*services.displayManager = {
sessionPackages = [ pkgs.hyprland ]; sessionPackages = [ pkgs.hyprland ];
}; };*/
environment.etc= { environment.etc= {
"greetd/background.png".source = ../../wallpapers/lucy_with_cat.png; "greetd/background.png".source = ../../wallpapers/lucy_with_cat.png;

View File

@ -4,10 +4,9 @@
dbus.packages = [pkgs.gcr]; dbus.packages = [pkgs.gcr];
geoclue2.enable = true; geoclue2.enable = true;
xserver.enable = true;
xserver.enable = true; udev.packages = with pkgs; [pkgs.gnome-settings-daemon];
udev.packages = with pkgs; [gnome.gnome-settings-daemon];
# Enable CUPS to print documents. # Enable CUPS to print documents.
printing.enable = true; printing.enable = true;

View File

@ -3,7 +3,8 @@
lib, lib,
username, username,
... ...
}: { }:
{
# ============================= User related ============================= # ============================= User related =============================
# 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.
@ -18,30 +19,29 @@
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# Bare minimum # Bare minimum
neovim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. neovim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
wget wget
git git
# System tools # System tools
sysstat sysstat
lm_sensors # for `sensors` command lm_sensors # for `sensors` command
ethtool ethtool
pciutils # lspci pciutils # lspci
usbutils # lsusb usbutils # lsusb
libGL libGL
# Rizz # Rizz
fastfetch fastfetch
cpufetch cpufetch
hyfetch hyfetch
ramfetch ramfetch
neofetch neofetch
ghfetch ghfetch
libnotify libnotify
#microfetch
# Terminal # Terminal
yazi # file manager yazi # file manager
jq # JSON Parser jq # JSON Parser
yq-go # YAML Parser yq-go # YAML Parser
@ -64,16 +64,13 @@
zstd zstd
gnupg gnupg
# Archives # Archives
zip zip
unzip unzip
p7zip p7zip
xz xz
]; ];
security.polkit.enable = true; security.polkit.enable = true;
} }