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

@@ -2,31 +2,36 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, lib, ... }:
{
config,
pkgs,
lib,
...
}:
{
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/docker.nix
../../modules/services.nix
../../modules/regreet/regreet.nix
../../modules/plymouth.nix
../../modules/file_managers/spacefm.nix
../../modules/appimage.nix
../../modules/qemu.nix
../../modules/thunderbird.nix
../../modules/canon_eos_550d.nix
# Include the results of the hardware scan.
./hardware-configuration.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/docker.nix
../../modules/services.nix
../../modules/regreet/regreet.nix
../../modules/plymouth.nix
../../modules/file_managers/spacefm.nix
../../modules/appimage.nix
../../modules/qemu.nix
../../modules/thunderbird.nix
../../modules/canon_eos_550d.nix
# Include the results of the hardware scan.
./hardware-configuration.nix
];
# Bootloader.
boot.loader = {
@@ -35,27 +40,29 @@
};
networking = {
hostName = "nix-desktop";
networkmanager.enable = true;
#useDHCP = lib.mkForce true;
#dhcpcd.enable = true;
interfaces = {
eno1.ipv4.addresses = [{
address = "192.168.2.40";
prefixLength = 24;
}];
};
hostName = "nix-desktop";
networkmanager.enable = true;
#useDHCP = lib.mkForce true;
#dhcpcd.enable = true;
interfaces = {
eno1.ipv4.addresses = [
{
address = "192.168.2.40";
prefixLength = 24;
}
];
};
defaultGateway = {
address = "192.168.2.1";
interface = "eno1";
};
defaultGateway = {
address = "192.168.2.1";
interface = "eno1";
};
nameservers = [
"192.168.2.2"
"1.1.1.1"
"8.8.8.8"
];
nameservers = [
"192.168.2.2"
"1.1.1.1"
"8.8.8.8"
];
};
hardware.graphics.enable = true;
@@ -65,5 +72,3 @@
environment.systemPackages = [ pkgs.onlyoffice-bin ];
}