-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modules/nixos wrap modules in config = {}
- Loading branch information
1 parent
a48d955
commit 0de07db
Showing
20 changed files
with
595 additions
and
555 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,50 @@ | ||
{pkgs, ...}: { | ||
boot = { | ||
consoleLogLevel = 0; | ||
initrd.verbose = false; | ||
plymouth.enable = true; | ||
}; | ||
|
||
environment.sessionVariables.NIXOS_OZONE_WL = "1"; | ||
programs.system-config-printer.enable = true; | ||
config = { | ||
boot = { | ||
consoleLogLevel = 0; | ||
initrd.verbose = false; | ||
plymouth.enable = true; | ||
}; | ||
|
||
services = { | ||
gnome.gnome-keyring.enable = true; | ||
gvfs.enable = true; # Mount, trash, etc. | ||
libinput.enable = true; | ||
environment.sessionVariables.NIXOS_OZONE_WL = "1"; | ||
programs.system-config-printer.enable = true; | ||
|
||
pipewire = { | ||
enable = true; | ||
services = { | ||
gnome.gnome-keyring.enable = true; | ||
gvfs.enable = true; # Mount, trash, etc. | ||
libinput.enable = true; | ||
|
||
alsa = { | ||
pipewire = { | ||
enable = true; | ||
support32Bit = true; | ||
}; | ||
|
||
pulse.enable = true; | ||
}; | ||
alsa = { | ||
enable = true; | ||
support32Bit = true; | ||
}; | ||
|
||
printing.enable = true; | ||
pulse.enable = true; | ||
}; | ||
|
||
pulseaudio = { | ||
package = pkgs.pulseaudioFull; # Use extra Bluetooth codecs like aptX | ||
printing.enable = true; | ||
|
||
extraConfig = '' | ||
load-module module-bluetooth-discover | ||
load-module module-bluetooth-policy | ||
load-module module-switch-on-connect | ||
''; | ||
pulseaudio = { | ||
package = pkgs.pulseaudioFull; # Use extra Bluetooth codecs like aptX | ||
|
||
support32Bit = true; | ||
}; | ||
extraConfig = '' | ||
load-module module-bluetooth-discover | ||
load-module module-bluetooth-policy | ||
load-module module-switch-on-connect | ||
''; | ||
|
||
support32Bit = true; | ||
}; | ||
|
||
system-config-printer.enable = true; | ||
system-config-printer.enable = true; | ||
|
||
xserver = { | ||
enable = true; | ||
excludePackages = with pkgs; [xterm]; | ||
xserver = { | ||
enable = true; | ||
excludePackages = with pkgs; [xterm]; | ||
}; | ||
}; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.