Set Styling for rofi

This commit is contained in:
2025-09-03 10:03:29 +02:00
parent 0dc1ae58fb
commit 74bf1dc059
100 changed files with 2836 additions and 2115 deletions

View File

@@ -5,40 +5,38 @@
{ config, pkgs, ... }:
{
imports = [
../../modules/system.nix
../../modules/nix-settings.nix
../../modules/vpn.nix
../../modules/fonts.nix
../../modules/firewall.nix
../../modules/localisation.nix
../../modules/openssh.nix
../../modules/pipewire.nix
../../modules/podman.nix
../../modules/services.nix
../../modules/regreet/regreet.nix
../../modules/plymouth.nix
../../modules/file_managers/spacefm.nix
imports = [
../../modules/system.nix
../../modules/nix-settings.nix
../../modules/vpn.nix
../../modules/fonts.nix
../../modules/firewall.nix
../../modules/localisation.nix
../../modules/openssh.nix
../../modules/pipewire.nix
../../modules/podman.nix
../../modules/services.nix
../../modules/regreet/regreet.nix
../../modules/plymouth.nix
../../modules/file_managers/spacefm.nix
# Include the results of the hardware scan.
./hardware-configuration.nix
];
# Include the results of the hardware scan.
./hardware-configuration.nix
];
programs.geary.enable = true;
programs.geary.enable = true;
boot.loader = {
grub = {
enable = true;
device = "/dev/sda";
};
boot.loader = {
grub = {
enable = true;
device = "/dev/sda";
};
};
networking.hostName = "nix-qemu"; # Define your hostname.
networking.hostName = "nix-qemu"; # Define your hostname.
hardware.graphics.enable = true;
hardware.graphics.enable = true;
system.stateVersion = "25.11"; # Did you read the comment?
system.stateVersion = "25.11"; # Did you read the comment?
}