mirror of
https://github.com/blahai/nyx.git
synced 2025-01-18 11:00:20 +00:00
Nyx: bunch of bs
This commit is contained in:
parent
59150ce65b
commit
4afee128c8
2 changed files with 21 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{ config, lib, pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
neofetch
|
||||
];
|
||||
programs.fish = {
|
||||
enable = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue