Nyx: bunch of bs

This commit is contained in:
blahai 2024-10-24 19:50:52 +03:00
parent 59150ce65b
commit 4afee128c8
Signed by: blahai
SSH key fingerprint: SHA256:ZfCryi+V64yG+vC1ZIIsqgvBCmA31tTi7RJ6M8CvpRc
2 changed files with 21 additions and 1 deletions

View file

@ -27,6 +27,13 @@
}; };
}; };
virtualisation = {
docker = {
enable = true;
storageDriver = "btrfs";
};
};
zramSwap = { zramSwap = {
enable = true; enable = true;
algorithm = "zstd"; algorithm = "zstd";
@ -75,6 +82,10 @@
}; };
}; };
cloudflared = {
enable = true;
};
gnome.gnome-keyring.enable = true; gnome.gnome-keyring.enable = true;
pipewire = { pipewire = {
@ -92,11 +103,12 @@
users.users.pingu = { users.users.pingu = {
isNormalUser = true; isNormalUser = true;
description = "Elissa"; description = "Elissa";
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" "docker" ];
shell = pkgs.fish; shell = pkgs.fish;
packages = with pkgs; [ packages = with pkgs; [
floorp floorp
vesktop vesktop
element-desktop
alacritty alacritty
kitty kitty
]; ];
@ -167,6 +179,7 @@
nix = { nix = {
package = pkgs.lix; package = pkgs.lix;
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
settings = { settings = {
experimental-features = [ "nix-command" "flakes" "auto-allocate-uids" ]; experimental-features = [ "nix-command" "flakes" "auto-allocate-uids" ];
max-jobs = "auto"; max-jobs = "auto";
@ -180,7 +193,10 @@
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
cloudflared
inputs.zen-browser.packages."${pkgs.system}".specific
btrfs-progs btrfs-progs
btop
hyprcursor hyprcursor
grimblast grimblast
neovim neovim
@ -199,6 +215,7 @@
lua lua
lua-language-server lua-language-server
nil nil
nixd
nixfmt-classic nixfmt-classic
zip zip
nodejs nodejs

View file

@ -1,4 +1,7 @@
{ config, lib, pkgs, ... }: { { config, lib, pkgs, ... }: {
home.packages = with pkgs; [
neofetch
];
programs.fish = { programs.fish = {
enable = true; enable = true;