test
This commit is contained in:
parent
7042c21301
commit
de6452d908
2 changed files with 8 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ config, pkgs, hostname, ... }: {
|
||||
{ config, pkgs, master-pkgs, hostname, ... }: {
|
||||
# Enable sound with pipewire.
|
||||
sound.enable = true;
|
||||
hardware.pulseaudio.enable = false;
|
||||
|
@ -102,7 +102,7 @@
|
|||
gnome.simple-scan
|
||||
]);
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
environment.systemPackages = with master-pkgs.pkgs; [
|
||||
# Gnome Extensions
|
||||
gnomeExtensions.tiling-assistant
|
||||
gnomeExtensions.dash-to-dock
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
inputs = {
|
||||
# NixOS packages
|
||||
unstable-nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||
master-nixpkgs.url = "nixpkgs/master";
|
||||
|
||||
# Manage dotfiles in a home directory
|
||||
home-manager.url = "github:nix-community/home-manager/release-23.05";
|
||||
|
@ -45,6 +46,10 @@
|
|||
inherit system;
|
||||
config = { allowUnfree = true; };
|
||||
};
|
||||
master-pkgs = import master-nixpkgs {
|
||||
inherit system;
|
||||
config = { allowUnfree = true; };
|
||||
};
|
||||
|
||||
lib = unstable-nixpkgs.lib;
|
||||
in {
|
||||
|
@ -55,6 +60,7 @@
|
|||
inherit system;
|
||||
specialArgs = {
|
||||
inherit hostname;
|
||||
inherit master-pkgs;
|
||||
};
|
||||
modules = [
|
||||
# Configuration Imports
|
||||
|
|
Loading…
Reference in a new issue