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

View file

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