Move and rename some stuff whatever
This commit is contained in:
parent
a0cc623c4b
commit
7c5ff0253e
38 changed files with 53 additions and 127 deletions
|
@ -1,16 +1,8 @@
|
|||
{ pkgs, ... }: {
|
||||
home.file = {
|
||||
".face" = {
|
||||
source = ./assets/pfp.png;
|
||||
};
|
||||
".assets/wallpapers" = {
|
||||
source = ./assets/wallpapers;
|
||||
};
|
||||
".assets/lockscreen" = {
|
||||
source = ./assets/lockscreen;
|
||||
};
|
||||
".alsoftrc" = {
|
||||
text = ''drivers=pulse'';
|
||||
};
|
||||
".face".source = ./assets/pfp.png;
|
||||
".assets/wallpapers".source = ./assets/wallpapers;
|
||||
".assets/lockscreen".source = ./assets/lockscreen;
|
||||
".alsoftrc".text = ''drivers=pulse'';
|
||||
};
|
||||
}
|
||||
|
|
|
@ -3,6 +3,5 @@ with lib; {
|
|||
options.home.desktop.enable = mkOption {
|
||||
type = types.bool;
|
||||
default = true;
|
||||
description = "Enable desktop apps and services, but home-manager";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -207,7 +207,7 @@ in {
|
|||
"urlclassifier.features.socialtracking.skipURLs" = "*.instagram.com, *.twitter.com, *.twimg.com";
|
||||
|
||||
"network.trr.mode" = 3;
|
||||
"network.trr.uri" = "https://doh.libredns.gr/noads";
|
||||
"network.trr.uri" = "https://wikimedia-dns.org/dns-query";
|
||||
"network.cookie.cookieBehavior" = 1;
|
||||
"network.cookie.sameSite.noneRequiresSecure" = true;
|
||||
"network.http.referer.XOriginPolicy" = 2;
|
||||
|
|
|
@ -38,9 +38,9 @@
|
|||
".config/libfm/libfm.conf".text = ''
|
||||
[config]
|
||||
single_click=0
|
||||
use_trash=0
|
||||
use_trash=1
|
||||
confirm_del=1
|
||||
confirm_trash=0
|
||||
confirm_trash=1
|
||||
advanced_mode=1
|
||||
si_unit=0
|
||||
force_startup_notify=1
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
./git
|
||||
./ncmpcpp
|
||||
./neovim
|
||||
./nh
|
||||
./ranger
|
||||
./tmux
|
||||
./zsh
|
||||
|
|
7
modules/home/programs/terminal/nh/default.nix
Normal file
7
modules/home/programs/terminal/nh/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.nh = {
|
||||
enable = true;
|
||||
flake = "/etc/nixos";
|
||||
};
|
||||
}
|
|
@ -11,14 +11,14 @@
|
|||
};
|
||||
shellAliases = {
|
||||
# NixOS
|
||||
flakedate = "sudo nix flake update --flake /etc/nixos";
|
||||
nhs = "sudo nh os switch -R /etc/nixos";
|
||||
flakedate = "doas nix flake update --flake /etc/nixos";
|
||||
nhs = "doas nh os switch -R /etc/nixos";
|
||||
nhu = "flakedate && nhs";
|
||||
ns = "nix-shell -p";
|
||||
|
||||
nixclean = "sudo nix-store --gc; nix-collect-garbage -d";
|
||||
nixpurge = "sudo nix-collect-garbage --delete-old";
|
||||
nixoptimize = "sudo nix store optimise";
|
||||
nixclean = "doas nix-store --gc; nix-collect-garbage -d";
|
||||
nixpurge = "doas nix-collect-garbage --delete-old";
|
||||
nixoptimize = "doas nix store optimise";
|
||||
nixscrub = "nixclean; nixpurge; nixoptimize";
|
||||
|
||||
# Shortcuts
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue