properly reformat all files
This commit is contained in:
@ -11,25 +11,25 @@ in
|
||||
inherit username homeDirectory;
|
||||
|
||||
packages = import ./packages.nix { inherit pkgs inputs; };
|
||||
sessionVariables = {
|
||||
sessionVariables = {
|
||||
NIXOS_OZONE_WL = "1";
|
||||
TZ = "Europe/Warsaw";
|
||||
};
|
||||
};
|
||||
|
||||
nixpkgs.config = {
|
||||
permittedInsecurePackages = [
|
||||
"fluffychat-linux-1.26.0"
|
||||
nixpkgs.config = {
|
||||
permittedInsecurePackages = [
|
||||
"fluffychat-linux-1.26.0"
|
||||
"olm-3.2.16"
|
||||
];
|
||||
|
||||
allowUnfreePredicate =
|
||||
pkg:
|
||||
builtins.elem (pkgs.lib.getName pkg) [
|
||||
"davinci-resolve"
|
||||
"anydesk"
|
||||
];
|
||||
};
|
||||
allowUnfreePredicate =
|
||||
pkg:
|
||||
builtins.elem (pkgs.lib.getName pkg) [
|
||||
"davinci-resolve"
|
||||
"anydesk"
|
||||
];
|
||||
};
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
home.stateVersion = "24.11";
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
webcopy = ''
|
||||
set -l domain (string trim $argv)
|
||||
get --recursive \
|
||||
wget --recursive \
|
||||
--level 5 \
|
||||
--no-clobber \
|
||||
--page-requisites \
|
||||
@ -15,18 +15,18 @@
|
||||
|
||||
venv = ''
|
||||
if [ -d .venv ]; then
|
||||
source .venv/bin/activate.fish
|
||||
else
|
||||
python -m venv .venv
|
||||
source .venv/bin/activate.fish
|
||||
fi
|
||||
source .venv/bin/activate.fish
|
||||
else
|
||||
python -m venv .venv
|
||||
source .venv/bin/activate.fish
|
||||
fi
|
||||
'';
|
||||
|
||||
thunderbird = ''
|
||||
if pgrep -x birdtray > /dev/null
|
||||
birdtray -s
|
||||
else
|
||||
birdtray &
|
||||
end
|
||||
birdtray -s
|
||||
else
|
||||
birdtray &
|
||||
end
|
||||
'';
|
||||
}
|
||||
|
@ -4,13 +4,13 @@
|
||||
imports = [
|
||||
# DE + style
|
||||
../../modules/desktop-environments/hyprland.nix
|
||||
../../modules/home-manager/apple-style.nix
|
||||
../../modules/home-manager/stylix.nix
|
||||
../../modules/home-manager/apple-style.nix
|
||||
../../modules/home-manager/stylix.nix
|
||||
|
||||
# Utilities + apps
|
||||
../../modules/home-manager/darkman.nix
|
||||
../../modules/home-manager/fish.nix
|
||||
../../modules/home-manager/ags.nix
|
||||
../../modules/home-manager/ags.nix
|
||||
|
||||
# Home Manager modules
|
||||
inputs.ags.homeManagerModules.default
|
||||
@ -41,21 +41,21 @@
|
||||
};
|
||||
};
|
||||
|
||||
modules.stylix = {
|
||||
enable = true;
|
||||
lightWallpaper = ./wallpapers/light.jpg;
|
||||
darkWallpaper = ./wallpapers/dark.jpg;
|
||||
};
|
||||
modules.stylix = {
|
||||
enable = true;
|
||||
lightWallpaper = ./wallpapers/light.jpg;
|
||||
darkWallpaper = ./wallpapers/dark.jpg;
|
||||
};
|
||||
|
||||
stylix.targets.firefox.profileNames = ["default"];
|
||||
stylix.targets.firefox.profileNames = [ "default" ];
|
||||
|
||||
modules.ags = {
|
||||
enable = true;
|
||||
full = true;
|
||||
};
|
||||
modules.ags = {
|
||||
enable = true;
|
||||
full = true;
|
||||
};
|
||||
|
||||
modules.darkman.enable = true;
|
||||
modules.apple-style.enable = true;
|
||||
modules.apple-style.enable = true;
|
||||
|
||||
modules.fish = {
|
||||
enable = true;
|
||||
@ -76,12 +76,12 @@
|
||||
];
|
||||
};
|
||||
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscodium;
|
||||
profiles.default.extensions = with pkgs.vscode-extensions; [
|
||||
rust-lang.rust-analyzer
|
||||
bbenoist.nix
|
||||
];
|
||||
};
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscodium;
|
||||
profiles.default.extensions = with pkgs.vscode-extensions; [
|
||||
rust-lang.rust-analyzer
|
||||
bbenoist.nix
|
||||
];
|
||||
};
|
||||
}
|
||||
|
@ -1,21 +1,22 @@
|
||||
{ pkgs, inputs, ... }:
|
||||
|
||||
with pkgs; [
|
||||
with pkgs;
|
||||
[
|
||||
(python3.withPackages (
|
||||
py: with py; [
|
||||
pywayland
|
||||
]
|
||||
py: with py; [
|
||||
pywayland
|
||||
]
|
||||
))
|
||||
|
||||
(birdtray.overrideAttrs (_: {
|
||||
cmakeFlags = [ "-DOPT_THUNDERBIRD_CMDLINE=${thunderbird}/bin/thunderbird" ];
|
||||
cmakeFlags = [ "-DOPT_THUNDERBIRD_CMDLINE=${thunderbird}/bin/thunderbird" ];
|
||||
}))
|
||||
|
||||
jq
|
||||
starship
|
||||
firefox
|
||||
fluffychat
|
||||
home-manager
|
||||
jq
|
||||
starship
|
||||
firefox
|
||||
fluffychat
|
||||
home-manager
|
||||
thunderbird-bin
|
||||
youtube-music
|
||||
libreoffice-qt6-fresh
|
||||
@ -31,5 +32,5 @@ with pkgs; [
|
||||
bitwarden-desktop
|
||||
davinci-resolve
|
||||
mpv
|
||||
sshfs
|
||||
sshfs
|
||||
]
|
||||
|
Reference in New Issue
Block a user