wallpaper
This commit is contained in:
parent
a32cde45c1
commit
9a16acca1b
3 changed files with 36 additions and 41 deletions
|
|
@ -1,15 +1,15 @@
|
|||
{ home-manager, specialArgs, ... }: {
|
||||
{ home-manager, specialArgs, ... }:
|
||||
{
|
||||
imports = [ home-manager.nixosModules.home-manager ];
|
||||
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.backupFileExtension = "bak";
|
||||
home-manager.users."lilith" = {
|
||||
imports = [
|
||||
./lilith
|
||||
];
|
||||
imports = [ ./lilith ];
|
||||
|
||||
home.username = "lilith";
|
||||
home.stateVersion = "24.11";
|
||||
};
|
||||
home-manager.extraSpecialArgs = specialArgs;
|
||||
home-manager.extraSpecialArgs = specialArgs;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,43 +1,35 @@
|
|||
{ pkgs, lib, ... }:
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
home.packages = let
|
||||
common = with pkgs; [
|
||||
gcc
|
||||
gnumake
|
||||
git
|
||||
home.packages = with pkgs; [
|
||||
gcc
|
||||
gnumake
|
||||
git
|
||||
|
||||
pulsemixer
|
||||
pavucontrol
|
||||
playerctl
|
||||
blueman
|
||||
nh
|
||||
wl-clipboard
|
||||
xdg-utils
|
||||
hyprshot
|
||||
pulsemixer
|
||||
pavucontrol
|
||||
playerctl
|
||||
blueman
|
||||
nh
|
||||
wl-clipboard
|
||||
xdg-utils
|
||||
hyprshot
|
||||
|
||||
# obsidian
|
||||
vlc
|
||||
obs-studio
|
||||
keepassxc
|
||||
ncspot
|
||||
# obsidian
|
||||
vlc
|
||||
obs-studio
|
||||
keepassxc
|
||||
ncspot
|
||||
|
||||
vesktop
|
||||
vesktop
|
||||
|
||||
btop
|
||||
htop
|
||||
btop
|
||||
htop
|
||||
|
||||
ollama
|
||||
# zoom-us
|
||||
];
|
||||
|
||||
gaming = with pkgs; [
|
||||
prismlauncher
|
||||
lutris
|
||||
steamtinkerlaunch
|
||||
];
|
||||
in
|
||||
common; # ++ (lib.optionals system-config.gaming.enable gaming);
|
||||
ollama
|
||||
# zoom-us
|
||||
#
|
||||
prismlauncher
|
||||
lutris
|
||||
# steamtinkerlaunch
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
lib,
|
||||
pkgs,
|
||||
hyprland,
|
||||
hyprpanel,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
|
@ -19,6 +20,8 @@
|
|||
programs.hyprland.enable = true;
|
||||
programs.hyprland.package = hyprland.packages.${pkgs.system}.hyprland;
|
||||
|
||||
nixpkgs.overlays = [ hyprpanel.overlay ];
|
||||
|
||||
services.greetd = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue