mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-06 13:06:35 +05:30
85 lines
1.4 KiB
Nix
85 lines
1.4 KiB
Nix
{
|
|
pkgs,
|
|
modulesPath,
|
|
inputs,
|
|
username,
|
|
...
|
|
}: {
|
|
imports = [
|
|
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
|
|
inputs.home-manager.nixosModules.home-manager
|
|
|
|
../../modules/nixos/default.nix
|
|
../../modules/nixos/desktop/awesome
|
|
];
|
|
|
|
nixpkgs.hostPlatform = "x86_64-linux";
|
|
|
|
networking = {
|
|
hostName = "iso";
|
|
};
|
|
|
|
hardware = {
|
|
bluetooth.enable = true;
|
|
bluetooth.powerOnBoot = true;
|
|
};
|
|
|
|
security = {
|
|
rtkit.enable = true;
|
|
};
|
|
|
|
programs = {
|
|
ssh.startAgent = true;
|
|
thunar = {
|
|
enable = true;
|
|
plugins = with pkgs.xfce; [thunar-archive-plugin thunar-volman];
|
|
};
|
|
nm-applet.enable = true;
|
|
};
|
|
|
|
services = {
|
|
resolved.enable = true;
|
|
|
|
pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
};
|
|
|
|
logind = {
|
|
extraConfig = "HandlePowerKey=suspend";
|
|
lidSwitch = "suspend";
|
|
lidSwitchExternalPower = "suspend";
|
|
};
|
|
|
|
xserver = {
|
|
enable = true;
|
|
xkb = {
|
|
layout = "in";
|
|
variant = "eng";
|
|
};
|
|
};
|
|
|
|
libinput.touchpad.naturalScrolling = true;
|
|
|
|
blueman.enable = true;
|
|
|
|
gvfs.enable = true;
|
|
tumbler.enable = true;
|
|
};
|
|
|
|
fonts.packages = with pkgs.nerd-fonts; [
|
|
fira-code
|
|
jetbrains-mono
|
|
];
|
|
|
|
home-manager.users.${username} = {
|
|
imports = [
|
|
./home.nix
|
|
];
|
|
};
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|