mirror of
https://github.com/blahai/nyx.git
synced 2025-01-18 19:10:21 +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 = {
|
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
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
{ config, lib, pkgs, ... }: {
|
{ config, lib, pkgs, ... }: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
neofetch
|
||||||
|
];
|
||||||
programs.fish = {
|
programs.fish = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue