Skip to content

Commit 6226ea2

Browse files
Merge pull request #7 from NotAShelf/main
treewide: minor cleanup
2 parents 71efbe4 + 0c03068 commit 6226ea2

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

flake.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
mkSystem = pkgs: system: hostname:
3232
pkgs.lib.nixosSystem {
33-
system = system;
33+
inherit system;
3434
modules = [
3535
./modules/system/configuration.nix
3636
(./. + "/hosts/${hostname}/hardware-configuration.nix")

modules/system/configuration.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
nixpkgs.config.allowUnfree = true;
1111

1212
# Remove unecessary preinstalled packages
13-
environment.defaultPackages = [];
13+
environment.defaultPackages = lib.mkForce [];
1414

1515
environment.sessionVariables = {GTK_USE_PORTAL = "1";};
1616

@@ -180,7 +180,7 @@
180180
};
181181

182182
# Sound (PipeWire)
183-
sound.enable = true;
183+
sound.enable = false;
184184
hardware.pulseaudio.enable = false;
185185
security.rtkit.enable = true;
186186
services.pipewire = {

modules/zsh/default.nix

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ in {
1212
home.packages = with pkgs; [
1313
zsh
1414
fzf
15-
zoxide
1615
];
1716

1817
programs.zoxide = {

0 commit comments

Comments
 (0)