Compare commits

...

3 commits

2 changed files with 10 additions and 2 deletions

View file

@ -38,7 +38,7 @@ outputs = {nixpkgs, agenix, home-manager, nixpkgs-unstable, nix-impermanence, ..
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = import nixpkgs-unstable { pkgs = import nixpkgs-unstable {
system = "x86_64-linux"; system = "x86_64-linux";
config = { allowUnfree = true; }; config = { allowUnfree = true; }; # TODO: Find why this doesn't work
}; };
modules = [ modules = [
# Needed for nix-index # Needed for nix-index
@ -54,7 +54,7 @@ outputs = {nixpkgs, agenix, home-manager, nixpkgs-unstable, nix-impermanence, ..
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = import nixpkgs { pkgs = import nixpkgs {
system = "x86_64-linux"; system = "x86_64-linux";
config = { allowUnfree = false; }; config = { allowUnfree = false; }; # TODO: Find why this doesn't work
}; };
modules = [ modules = [
# Needed for nix-index # Needed for nix-index

View file

@ -21,6 +21,9 @@
networking.hostName = "Archie"; # Define your hostname. networking.hostName = "Archie"; # Define your hostname.
networking.networkmanager.enable = true; # Enable networking networking.networkmanager.enable = true; # Enable networking
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# Set your time zone. # Set your time zone.
time.timeZone = "Europe/Madrid"; time.timeZone = "Europe/Madrid";
@ -37,6 +40,11 @@
# Enable the X11 windowing system. # Enable the X11 windowing system.
services.xserver.enable = true; services.xserver.enable = true;
# Enable the pipewire sound server
services.pipewire = {
enable = true;
pulse.enable = true;
};
# Enable the Plasma 5 Desktop Environment. # Enable the Plasma 5 Desktop Environment.
services.xserver.displayManager.sddm.enable = true; services.xserver.displayManager.sddm.enable = true;