Compare commits
2 Commits
590287a4db
...
06a7bc239a
Author | SHA1 | Date | |
---|---|---|---|
06a7bc239a | |||
be65937f59 |
@ -1,20 +1,27 @@
|
||||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
./modules.nix
|
||||
./services.nix
|
||||
./programs.nix
|
||||
./users.nix
|
||||
./networking.nix
|
||||
./fonts.nix
|
||||
];
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
./modules.nix
|
||||
./services.nix
|
||||
./programs.nix
|
||||
./users.nix
|
||||
./networking.nix
|
||||
./fonts.nix
|
||||
];
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
nix.gc = {
|
||||
automatic = true;
|
||||
dates = "weekly";
|
||||
options = "--delete-old";
|
||||
};
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
swapDevices = [
|
||||
{
|
||||
device = "/swap";
|
||||
size = 8192;
|
||||
}
|
||||
];
|
||||
swapDevices = [
|
||||
{
|
||||
device = "/swap";
|
||||
size = 8192;
|
||||
}
|
||||
];
|
||||
}
|
||||
|
@ -8,6 +8,7 @@
|
||||
enable = true;
|
||||
interactiveShellInit = ''
|
||||
set fish_greeting
|
||||
cat ~/.cache/wal/sequences
|
||||
'';
|
||||
shellAliases = {
|
||||
".." = "cd ..";
|
||||
|
@ -31,6 +31,8 @@ in {
|
||||
lxqt.lxqt-policykit
|
||||
stdenv.cc.cc.lib
|
||||
|
||||
pywal pywalfox-native
|
||||
|
||||
(python3.withPackages (py: with py; [
|
||||
pywayland
|
||||
]))
|
||||
@ -45,7 +47,7 @@ in {
|
||||
starship
|
||||
firefox-beta-bin
|
||||
thunderbird-bin
|
||||
fluffychat
|
||||
element-desktop
|
||||
libreoffice-qt6-fresh
|
||||
gimp
|
||||
vscodium git nodejs
|
||||
|
@ -2,12 +2,14 @@
|
||||
|
||||
{
|
||||
imports = [ ./fish ];
|
||||
|
||||
programs.pywal.enable = true;
|
||||
programs.ags = {
|
||||
enable = true;
|
||||
extraPackages = with inputs.ags.packages.${pkgs.system}; [
|
||||
apps battery bluetooth greet hyprland mpris network notifd powerprofiles tray wireplumber
|
||||
] ++ [
|
||||
pkgs.fzf pkgs.icon-library
|
||||
pkgs.dart-sass pkgs.fzf pkgs.icon-library
|
||||
];
|
||||
};
|
||||
|
||||
|
@ -16,21 +16,22 @@ in
|
||||
{
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
adw-gtk3
|
||||
material-symbols
|
||||
noto-fonts
|
||||
noto-fonts-cjk-sans
|
||||
bibata-cursors
|
||||
];
|
||||
sessionVariables = {
|
||||
|
||||
sessionVariables = {
|
||||
XCURSOR_THEME = cursor-theme;
|
||||
XCURSOR_SIZE = "24";
|
||||
};
|
||||
pointerCursor = {
|
||||
|
||||
pointerCursor = {
|
||||
package = cursor-pkg;
|
||||
name = cursor-theme;
|
||||
size = 24;
|
||||
gtk.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user