Compare commits

..

No commits in common. "ff391f7f2d434f65af0b9e9f7a5eb361a03a3216" and "8578615936eec6c738aa6aea77c18858e813651d" have entirely different histories.

2 changed files with 2 additions and 10 deletions

View file

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

View file

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