File tree 3 files changed +3
-4
lines changed
3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 30
30
31
31
mkSystem = pkgs : system : hostname :
32
32
pkgs . lib . nixosSystem {
33
- system = system ;
33
+ inherit system ;
34
34
modules = [
35
35
./modules/system/configuration.nix
36
36
( ./. + "/hosts/${ hostname } /hardware-configuration.nix" )
Original file line number Diff line number Diff line change 10
10
nixpkgs . config . allowUnfree = true ;
11
11
12
12
# Remove unecessary preinstalled packages
13
- environment . defaultPackages = [ ] ;
13
+ environment . defaultPackages = lib . mkForce [ ] ;
14
14
15
15
environment . sessionVariables = { GTK_USE_PORTAL = "1" ; } ;
16
16
180
180
} ;
181
181
182
182
# Sound (PipeWire)
183
- sound . enable = true ;
183
+ sound . enable = false ;
184
184
hardware . pulseaudio . enable = false ;
185
185
security . rtkit . enable = true ;
186
186
services . pipewire = {
Original file line number Diff line number Diff line change 12
12
home . packages = with pkgs ; [
13
13
zsh
14
14
fzf
15
- zoxide
16
15
] ;
17
16
18
17
programs . zoxide = {
You can’t perform that action at this time.
0 commit comments