Compare commits
3 Commits
26b41feeef
...
4e990e85bb
Author | SHA1 | Date |
---|---|---|
|
4e990e85bb | |
|
a10ad3a664 | |
|
f5ac190adc |
|
@ -5,11 +5,17 @@
|
||||||
{ config, lib, pkgs, callPackage, catppuccinFlavor, ... }:
|
{ config, lib, pkgs, callPackage, catppuccinFlavor, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports = [
|
||||||
[
|
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
programs.steam = {
|
||||||
|
enable = true;
|
||||||
|
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
|
||||||
|
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
|
||||||
|
localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers
|
||||||
|
};
|
||||||
|
|
||||||
catppuccin.flavor = catppuccinFlavor;
|
catppuccin.flavor = catppuccinFlavor;
|
||||||
catppuccin.enable = true;
|
catppuccin.enable = true;
|
||||||
programs.dconf.enable = true;
|
programs.dconf.enable = true;
|
||||||
|
@ -50,14 +56,15 @@
|
||||||
rofi
|
rofi
|
||||||
polybar
|
polybar
|
||||||
polybar-pulseaudio-control
|
polybar-pulseaudio-control
|
||||||
|
pavucontrol
|
||||||
dunst
|
dunst
|
||||||
i3lock-color # locksreen
|
i3lock-color # locksreen
|
||||||
arandr # manager monitor
|
arandr # manager monitor
|
||||||
|
lxqt.lxqt-sudo
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Configure keymap in X11
|
# Configure keymap in X11
|
||||||
services.xserver.xkb.layout = "ch";
|
services.xserver.xkb.layout = "ch";
|
||||||
services.displayManager.defaultSession = "none+i3";
|
services.displayManager.defaultSession = "none+i3";
|
||||||
|
@ -123,6 +130,8 @@
|
||||||
pkgs.kitty # terminal
|
pkgs.kitty # terminal
|
||||||
pkgs.nitrogen # wallpapers
|
pkgs.nitrogen # wallpapers
|
||||||
pkgs.tmux # multiplexer
|
pkgs.tmux # multiplexer
|
||||||
|
|
||||||
|
pkgs.steam
|
||||||
];
|
];
|
||||||
|
|
||||||
# Some programs need SUID wrappers, can be configured further or are
|
# Some programs need SUID wrappers, can be configured further or are
|
||||||
|
@ -168,5 +177,7 @@
|
||||||
# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
|
# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
|
||||||
system.stateVersion = "24.11"; # Did you read the comment?
|
system.stateVersion = "24.11"; # Did you read the comment?
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
|
||||||
|
services.gvfs.enable = true; # automount usb to pcmanfm
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
14
home.nix
14
home.nix
|
@ -62,12 +62,13 @@
|
||||||
# This value determines the Home Manager release that your configuration is
|
# This value determines the Home Manager release that your configuration is
|
||||||
# compatible with. This helps avoid breakage when a new Home Manager release
|
# compatible with. This helps avoid breakage when a new Home Manager release
|
||||||
# introduces backwards incompatible changes.
|
# introduces backwards incompatible changes.
|
||||||
#
|
|
||||||
# You should not change this value, even if you update Home Manager. If you do
|
# You should not change this value, even if you update Home Manager. If you do
|
||||||
# want to update the value, then make sure to first check the Home Manager
|
# want to update the value, then make sure to first check the Home Manager
|
||||||
# release notes.
|
# release notes.
|
||||||
home.stateVersion = "24.05"; # Please read the comment before changing.
|
home.stateVersion = "24.05"; # Please read the comment before changing.
|
||||||
|
|
||||||
|
|
||||||
# The home.packages option allows you to install Nix packages into your
|
# The home.packages option allows you to install Nix packages into your
|
||||||
# environment.
|
# environment.
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
@ -78,12 +79,21 @@
|
||||||
pkgs.oh-my-zsh # prompt
|
pkgs.oh-my-zsh # prompt
|
||||||
pkgs.picom # compositoe
|
pkgs.picom # compositoe
|
||||||
pkgs.ranger # file manager
|
pkgs.ranger # file manager
|
||||||
|
|
||||||
pkgs.pcmanfm # gui file manager
|
pkgs.pcmanfm # gui file manager
|
||||||
|
pkgs.lxmenu-data # to be offered a list of "Installed applications" when opening a file.
|
||||||
|
pkgs.shared-mime-info # to recognise different file types.
|
||||||
|
|
||||||
pkgs.superfile # file manager
|
pkgs.superfile # file manager
|
||||||
pkgs.obsidian # notes
|
pkgs.obsidian # notes
|
||||||
pkgs.keepassxc # passwords
|
pkgs.keepassxc # passwords
|
||||||
pkgs.devdocs-desktop # docs
|
pkgs.devdocs-desktop # docs
|
||||||
pkgs.spicetify-cli
|
pkgs.spicetify-cli # spotify
|
||||||
|
|
||||||
|
pkgs.libreoffice-qt # office
|
||||||
|
pkgs.hunspell # spell check
|
||||||
|
pkgs.hunspellDicts.uk_UA
|
||||||
|
pkgs.hunspellDicts.de_CH
|
||||||
|
|
||||||
# # It is sometimes useful to fine-tune packages, for example, by applying
|
# # It is sometimes useful to fine-tune packages, for example, by applying
|
||||||
# # overrides. You can do that directly here, just don't forget the
|
# # overrides. You can do that directly here, just don't forget the
|
||||||
|
|
Loading…
Reference in New Issue