fix: Cleanup
This commit is contained in:
parent
6f3ac8b201
commit
0ed1fa0509
8 changed files with 23 additions and 12 deletions
|
@ -10,7 +10,4 @@
|
|||
enable = true;
|
||||
package = pkgs.emacs; # replace with emacs-gtk, or a version provided by the community overlay if desired.
|
||||
};
|
||||
# environment.systemPackages = with pkgs; [
|
||||
# prettier
|
||||
# ];
|
||||
}
|
||||
|
|
|
@ -12,6 +12,13 @@
|
|||
./xdg.nix
|
||||
];
|
||||
|
||||
# Hyprland cache
|
||||
nix.settings = {
|
||||
substituters = ["https://hyprland.cachix.org"];
|
||||
trusted-substituters = ["https://hyprland.cachix.org"];
|
||||
trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="];
|
||||
};
|
||||
|
||||
# Security
|
||||
security = {
|
||||
pam.services.swaylock = {
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
|
||||
nix.settings.auto-optimise-store = true;
|
||||
nix.optimise.automatic = true;
|
||||
nix.settings.keep-derivations = false; # saves space. Turn off for easier debugging
|
||||
|
||||
# Disable so comma can be installed
|
||||
programs.command-not-found.enable = false;
|
||||
|
|
|
@ -22,5 +22,6 @@
|
|||
wget
|
||||
home-manager
|
||||
git
|
||||
nix-tree
|
||||
];
|
||||
}
|
||||
|
|
|
@ -7,8 +7,18 @@
|
|||
autoEnable = true;
|
||||
|
||||
polarity = "dark";
|
||||
opacity.terminal = 0.65;
|
||||
fonts.sizes.terminal = 10;
|
||||
opacity = {
|
||||
applications = 1.0;
|
||||
desktop = 1.0;
|
||||
popups = 0.8;
|
||||
terminal = 0.65;
|
||||
};
|
||||
fonts.sizes = {
|
||||
applications = 10;
|
||||
desktop = 10;
|
||||
popups = 14;
|
||||
terminal = 10;
|
||||
};
|
||||
|
||||
fonts = {
|
||||
serif = {
|
||||
|
|
|
@ -17,12 +17,6 @@
|
|||
"x86_64-darwin"
|
||||
];
|
||||
|
||||
# Hyprland cache
|
||||
nix.settingcs = {
|
||||
substituters = ["https://hyprland.cachix.org"];
|
||||
trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="];
|
||||
};
|
||||
|
||||
mkNixos = modules:
|
||||
nixpkgs.lib.nixosSystem {
|
||||
modules =
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
};
|
||||
|
||||
wayland.windowManager.hyprland.enable = true;
|
||||
programs.fuzzel.enable = true;
|
||||
|
||||
wayland.windowManager.hyprland.settings = {
|
||||
xwayland.force_zero_scaling = true;
|
||||
|
|
|
@ -49,7 +49,7 @@ in {
|
|||
|
||||
# Other
|
||||
zsnaplatest = "zfs list -t snapshot -H -S creation -o name -d 1";
|
||||
emacsnw = "emacs -nw";
|
||||
emacsnw = "emacsclient -nw -c";
|
||||
install-doom = "git clone --depth 1 https://github.com/doomemacs/doomemacs ~/.emacs.d && ~/.emacs.d/bin/doom install";
|
||||
fhinit = "nix run \"https://flakehub.com/f/DeterminateSystems/fh/*.tar.gz\" -- init";
|
||||
sensors-where = "for m in /sys/class/hwmon/* ; do echo -n “$m = ” ; cat $m/name ; done";
|
||||
|
|
Loading…
Add table
Reference in a new issue