added gc options

This commit is contained in:
Polen 2025-05-23 14:20:05 -04:00
parent 3f49f8436b
commit bec67c3c89

View file

@ -1,34 +1,42 @@
# Edit this configuration file to define what should be installed on # Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page # your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help). # and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
{ {
imports = [ # Include the results of the hardware scan. config,
pkgs,
...
}: {
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
]; ];
hardware.bluetooth = { hardware.bluetooth = {
enable = true; enable = true;
powerOnBoot = true; powerOnBoot = true;
}; };
services.blueman.enable = true; services.blueman.enable = true;
# Bootloader. # Bootloader.
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
boot.kernelModules = [ "msr" ]; boot.kernelModules = ["msr"];
networking.hostName = "nixos"; # Define your hostname. networking.hostName = "nixos"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix = {
nix.settings.trusted-users = [ "polen" ]; settings.experimental-features = ["nix-command" "flakes"];
# nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems; settings.trusted-users = ["polen"];
# boot.binfmt.emulatedSystems = ["aarch64-linux"]; # settings.extra-platforms = config.boot.binfmt.emulatedSystems;
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 15d";
};
};
# boot.binfmt.emulatedSystems = ["aarch64-linux"];
# Configure network proxy if necessary # Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/"; # networking.proxy.default = "http://user:password@proxy:port/";
@ -50,16 +58,16 @@
xkb.variant = ""; xkb.variant = "";
}; };
services.displayManager.sddm = { services.displayManager.sddm = {
enable = true; enable = true;
theme = "${import ./sddm-theme.nix { inherit pkgs; }}"; theme = "${import ./sddm-theme.nix {inherit pkgs;}}";
}; };
# 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.polen = { users.users.polen = {
isNormalUser = true; isNormalUser = true;
description = "polen"; description = "polen";
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = ["networkmanager" "wheel"];
shell = pkgs.zsh; shell = pkgs.zsh;
}; };
@ -76,9 +84,9 @@
ranger ranger
git git
home-manager home-manager
sops sops
# Desktop # Desktop
waybar waybar
mako mako
swww swww
@ -91,8 +99,8 @@
libsForQt5.qt5.qtquickcontrols2 libsForQt5.qt5.qtquickcontrols2
libsForQt5.qt5.qtgraphicaleffects libsForQt5.qt5.qtgraphicaleffects
# Nix related # Nix related
nixfmt-classic nixfmt-classic
]; ];
programs.zsh.enable = true; programs.zsh.enable = true;
@ -115,10 +123,10 @@
programs.seahorse.enable = true; programs.seahorse.enable = true;
xdg.portal.enable = true; xdg.portal.enable = true;
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; xdg.portal.extraPortals = [pkgs.xdg-desktop-portal-gtk];
environment.sessionVariables = { environment.sessionVariables = {
NIXOS_OZONE_WL = "1"; NIXOS_OZONE_WL = "1";
QT_SCALE_FACTOR_ROUNDING_POLICY = "RoundPreferFloor"; QT_SCALE_FACTOR_ROUNDING_POLICY = "RoundPreferFloor";
}; };
@ -154,5 +162,4 @@
# 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 = "23.11"; # Did you read the comment? system.stateVersion = "23.11"; # Did you read the comment?
} }