configuration.nix aktualisiert

This commit is contained in:
fnord 2025-05-07 04:02:26 +02:00
parent bd728bfd5d
commit 3923207d50

View file

@ -12,11 +12,9 @@
./flatpak.nix
./user-chch.nix
./boot.nix
./hostname.nix
# ./flake.nix
];
# networking.hostName = "$HOSTNAME_HERE"; # Please Define hostname in hostname.nix
networking.hostName = "chch-elab-r"; # Define your hostname.
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
# Set your time zone.
@ -48,11 +46,6 @@
openFirewall = true;
};
# nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Enabling HackRF One Support
hardware.hackrf.enable = true;
# Enable sound.
services.pipewire = {
enable = true;
@ -65,9 +58,6 @@
# Enable Unfree Packages to be installed:
nixpkgs.config.allowUnfree = true;
# Enable Wireshark
programs.wireshark.enable = true;
# Defining Globally installed Packages
environment.systemPackages = with pkgs; [
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
@ -119,3 +109,4 @@
system.stateVersion = "24.11"; # Did you read the comment?
}