mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-23 01:05:38 +00:00
setup more default.nix
This commit is contained in:
parent
9d7307d16d
commit
0685a90aa3
20
flake.nix
20
flake.nix
@ -41,18 +41,10 @@
|
|||||||
./nixos/hardware-configuration.nix
|
./nixos/hardware-configuration.nix
|
||||||
./nixos/configuration.nix
|
./nixos/configuration.nix
|
||||||
./nixos/home.nix
|
./nixos/home.nix
|
||||||
./modules/desktop/xorg.nix
|
./modules/desktop
|
||||||
./modules/desktop/i3.nix
|
./modules/hardware
|
||||||
./modules/desktop/fonts.nix
|
./modules/system
|
||||||
./modules/hardware/boot.nix
|
./modules/shell
|
||||||
./modules/hardware/mouse.nix
|
|
||||||
./modules/hardware/keyboard.nix
|
|
||||||
./modules/hardware/monitors.nix
|
|
||||||
./modules/hardware/audio.nix
|
|
||||||
./modules/hardware/networking.nix
|
|
||||||
./modules/system/timezone.nix
|
|
||||||
./modules/system/doas.nix
|
|
||||||
./modules/system/user.nix
|
|
||||||
./modules/gaming
|
./modules/gaming
|
||||||
./modules/services/keybase.nix
|
./modules/services/keybase.nix
|
||||||
./modules/applications/firefox.nix
|
./modules/applications/firefox.nix
|
||||||
@ -60,10 +52,6 @@
|
|||||||
./modules/applications/media.nix
|
./modules/applications/media.nix
|
||||||
./modules/applications/1password.nix
|
./modules/applications/1password.nix
|
||||||
./modules/applications/discord.nix
|
./modules/applications/discord.nix
|
||||||
./modules/shell/fish.nix
|
|
||||||
./modules/shell/utilities.nix
|
|
||||||
./modules/shell/git.nix
|
|
||||||
./modules/shell/github.nix
|
|
||||||
./modules/editor/neovim.nix
|
./modules/editor/neovim.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
5
modules/desktop/default.nix
Normal file
5
modules/desktop/default.nix
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{ ... }: {
|
||||||
|
|
||||||
|
imports = [ ./xorg.nix ./fonts.nix ./i3.nix ];
|
||||||
|
|
||||||
|
}
|
@ -1,4 +1,6 @@
|
|||||||
{ pkgs, gui, ... }: {
|
{ pkgs, lib, gui, ... }: {
|
||||||
|
|
||||||
|
config = lib.mkIf gui.enable {
|
||||||
|
|
||||||
fonts.fonts = with pkgs;
|
fonts.fonts = with pkgs;
|
||||||
[
|
[
|
||||||
@ -7,4 +9,6 @@
|
|||||||
];
|
];
|
||||||
fonts.fontconfig.defaultFonts.monospace = [ gui.font.name ];
|
fonts.fontconfig.defaultFonts.monospace = [ gui.font.name ];
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
{ config, pkgs, identity, gui, ... }: {
|
{ config, pkgs, lib, identity, gui, ... }: {
|
||||||
|
|
||||||
|
config = lib.mkIf gui.enable {
|
||||||
|
|
||||||
# Enable the X11 windowing system.
|
# Enable the X11 windowing system.
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
@ -30,5 +32,6 @@
|
|||||||
pbpaste = "xclip -selection clipboard -out";
|
pbpaste = "xclip -selection clipboard -out";
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
{ pkgs, ... }: {
|
{ pkgs, lib, gui, ... }: {
|
||||||
|
|
||||||
|
config = lib.mkIf gui.enable {
|
||||||
sound.enable = true;
|
sound.enable = true;
|
||||||
hardware.pulseaudio.enable = true;
|
hardware.pulseaudio.enable = true;
|
||||||
|
|
||||||
@ -7,5 +8,6 @@
|
|||||||
[
|
[
|
||||||
pamixer # Audio control
|
pamixer # Audio control
|
||||||
];
|
];
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
12
modules/hardware/default.nix
Normal file
12
modules/hardware/default.nix
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{ lib, gui, ... }: {
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
./audio.nix
|
||||||
|
./boot.nix
|
||||||
|
./keyboard.nix
|
||||||
|
./monitors.nix
|
||||||
|
./mouse.nix
|
||||||
|
./networking.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
@ -1,8 +1,10 @@
|
|||||||
{ pkgs, identity, ... }: {
|
{ pkgs, lib, gui, identity, ... }: {
|
||||||
|
|
||||||
# Timezone required for Redshift schedule
|
# Timezone required for Redshift schedule
|
||||||
imports = [ ../system/timezone.nix ];
|
imports = [ ../system/timezone.nix ];
|
||||||
|
|
||||||
|
config = lib.mkIf gui.enable {
|
||||||
|
|
||||||
environment.systemPackages = with pkgs;
|
environment.systemPackages = with pkgs;
|
||||||
[
|
[
|
||||||
ddcutil # Monitor brightness control
|
ddcutil # Monitor brightness control
|
||||||
@ -46,4 +48,6 @@
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
{ pkgs, ... }: {
|
{ pkgs, lib, gui, ... }: {
|
||||||
|
|
||||||
|
config = lib.mkIf gui.enable {
|
||||||
|
|
||||||
# Mouse config
|
# Mouse config
|
||||||
services.ratbagd.enable = true;
|
services.ratbagd.enable = true;
|
||||||
@ -14,4 +16,6 @@
|
|||||||
accelSpeed = "1.15";
|
accelSpeed = "1.15";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1 +1 @@
|
|||||||
{ ... }: { imports = [ ./fish.nix ]; }
|
{ ... }: { imports = [ ./fish.nix ./git.nix ./github.nix ./utilities.nix ]; }
|
||||||
|
5
modules/system/default.nix
Normal file
5
modules/system/default.nix
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{ ... }: {
|
||||||
|
|
||||||
|
imports = [ ./user.nix ./timezone.nix ./doas.nix ];
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user