Compare commits
3 commits
8578615936
...
ff391f7f2d
| Author | SHA1 | Date | |
|---|---|---|---|
| ff391f7f2d | |||
| e381f1fc2c | |||
| b8a4d2c96f |
2 changed files with 10 additions and 2 deletions
|
|
@ -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; };
|
||||
config = { allowUnfree = true; }; # TODO: Find why this doesn't work
|
||||
};
|
||||
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; };
|
||||
config = { allowUnfree = false; }; # TODO: Find why this doesn't work
|
||||
};
|
||||
modules = [
|
||||
# Needed for nix-index
|
||||
|
|
|
|||
|
|
@ -21,6 +21,9 @@
|
|||
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";
|
||||
|
||||
|
|
@ -37,6 +40,11 @@
|
|||
# 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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue