resturcting of nixos 1

This commit is contained in:
cnst
2024-07-07 11:34:02 +02:00
parent f56fbc81f6
commit 06062a592b
11 changed files with 121 additions and 37 deletions

View File

@@ -0,0 +1,69 @@
{pkgs, ...}: {
imports = [
# core
../../core/hyprland.nix
../../core/adb.nix
../../core/zsh.nix
../../core/fonts.nix
# hardware
../../hardware/cnix.nix
# locale
../../locale/cnix.nix
# services
../../services/blueman.nix
../../services/dbus.nix
../../services/gnome-keyring.nix
../../services/greetd.nix
../../services/gvfs.nix
../../services/mullvad.nix
../../services/openssh.nix
../../services/pipewire.nix
../../services/udisks.nix
../../services/xserver.nix
# extra
../../extra/gaming.nix
../../extra/workstation
# ../../extra/nix-ld
];
environment = {
systemPackages = with pkgs; [
# Core
git
sbctl
niv
nix-output-monitor
nvd
fd
# Util
stow
wget
curl
ripgrep
python3
hyprlang
python312Packages.oauth2
python312Packages.httplib2
killall
tree-sitter
lazygit
tmux
tmuxifier
unzip
p7zip
unrar
xdg-utils
xdg-user-dirs
ntfs3g
gnome-disk-utility
wlroots
fzf
udiskie
];
};
}