Initial commit of NixOS configuration
This commit is contained in:
8
system_components/default.nix
Normal file
8
system_components/default.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{lib, ...}: {
|
||||
imports = [
|
||||
./fish_root.nix
|
||||
./sddm.nix
|
||||
./hardware.nix
|
||||
./tailscale.nix
|
||||
];
|
||||
}
|
||||
18
system_components/fish_root.nix
Normal file
18
system_components/fish_root.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{pkgs, ...}:{
|
||||
programs.fish.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
nix-your-shell
|
||||
btop
|
||||
fastfetch
|
||||
wget
|
||||
];
|
||||
|
||||
programs.bash.interactiveShellInit = ''
|
||||
if [[ $(${pkgs.procps}/bin/ps --no-header --pid=$PPID --format=comm) != "fish" && -z ''${BASH_EXECUTION_STRING} ]]
|
||||
then
|
||||
shopt -q login_shell && LOGIN_OPTION='--login' || LOGIN_OPTION=""
|
||||
exec ${pkgs.fish}/bin/fish $LOGIN_OPTION
|
||||
fi
|
||||
'';
|
||||
}
|
||||
12
system_components/hardware.nix
Normal file
12
system_components/hardware.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{pkgs, ...}: {
|
||||
hardware.opentabletdriver.enable = true;
|
||||
hardware.uinput.enable = true;
|
||||
boot.kernelModules = [ "uinput" ];
|
||||
|
||||
hardware.graphics = {
|
||||
enable = true;
|
||||
extraPackages = with pkgs; [
|
||||
intel-media-driver
|
||||
];
|
||||
};
|
||||
}
|
||||
6
system_components/pipewire.nix
Normal file
6
system_components/pipewire.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{pkgs, ...}: {
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
pulse.enable = true;
|
||||
};
|
||||
}
|
||||
9
system_components/sddm.nix
Normal file
9
system_components/sddm.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{pkgs, ...}: {
|
||||
programs.hyprland.enable = true;
|
||||
|
||||
services.displayManager.defaultSession = "hyprland";
|
||||
services.displayManager.sddm = {
|
||||
enable = true;
|
||||
wayland.enable = true;
|
||||
};
|
||||
}
|
||||
6
system_components/tailscale.nix
Normal file
6
system_components/tailscale.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{pkgs, ...}: {
|
||||
services.tailscale = {
|
||||
enable = true;
|
||||
extraSetFlags = [ "--accept-routes" ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user