minor updates

This commit is contained in:
Vivian 2024-03-04 15:22:52 +01:00
parent 4416a21e47
commit 457537462a
6 changed files with 43 additions and 44 deletions

View file

@ -4,7 +4,7 @@ let
inherit (pkgs.texlive) scheme-full; inherit (pkgs.texlive) scheme-full;
dnd-5e-latex-template = { pkgs = [ pkgs.v.dnd-5e-latex-template ]; }; dnd-5e-latex-template = { pkgs = [ pkgs.v.dnd-5e-latex-template ]; };
}; };
my-python-packages = ps: with ps; [ pandas requests numpy scapy pyshark ]; my-python-packages = ps: with ps; [ pandas requests numpy scapy pyshark cryptography ];
in { in {
home.packages = with pkgs; [ home.packages = with pkgs; [
(python3.withPackages my-python-packages) (python3.withPackages my-python-packages)

View file

@ -3,12 +3,10 @@ with lib;
let cfg = config.themes.v.catppuccin; let cfg = config.themes.v.catppuccin;
in { in {
options.themes.v.catppuccin = { enable = mkEnableOption "catppuccin"; }; options.themes.v.catppuccin = { enable = mkEnableOption "catppuccin"; };
config = config = let
let theme = "Catppuccin-Frappe-Pink-Dark";
theme = "Catppuccin-Pink-Dark";
cursorTheme = config.home.pointerCursor.name; cursorTheme = config.home.pointerCursor.name;
in in mkIf cfg.enable {
mkIf cfg.enable {
home.pointerCursor = { home.pointerCursor = {
name = "Bibata_Ghost"; name = "Bibata_Ghost";
size = 24; size = 24;
@ -19,7 +17,11 @@ in {
enable = true; enable = true;
theme = { theme = {
name = theme; name = theme;
package = pkgs.catppuccin-gtk; package = pkgs.catppuccin-gtk.override {
accents = [ "pink" ];
variant = "frappe";
size = "standard";
};
}; };
iconTheme = { iconTheme = {
name = "Papirus-Dark"; name = "Papirus-Dark";

18
flake.lock generated
View file

@ -837,11 +837,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1708806879, "lastModified": 1708988456,
"narHash": "sha256-MSbxtF3RThI8ANs/G4o1zIqF5/XlShHvwjl9Ws0QAbI=", "narHash": "sha256-RCz7Xe64tN2zgWk+MVHkzg224znwqknJ1RnB7rVqUWw=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "4ee704cb13a5a7645436f400b9acc89a67b9c08a", "rev": "1d085ea4444d26aa52297758b333b449b2aa6fca",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -1412,11 +1412,11 @@
}, },
"nixpkgs_8": { "nixpkgs_8": {
"locked": { "locked": {
"lastModified": 1708847675, "lastModified": 1708954320,
"narHash": "sha256-RUZ7KEs/a4EzRELYDGnRB6i7M1Izii3JD/LyzH0c6Tg=", "narHash": "sha256-n3LXNMlz7ORCjfIrIUo19a844Fec2+yg7k6NspdVCxs=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "2a34566b67bef34c551f204063faeecc444ae9da", "rev": "94cda73bf2fd675de987db7c3ac81e861b892266",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -1466,11 +1466,11 @@
}, },
"nur": { "nur": {
"locked": { "locked": {
"lastModified": 1708938863, "lastModified": 1709020581,
"narHash": "sha256-RwqyijFuO+O6T4IX3eQk64j3zHQHBjNWlP57Mc2wyvY=", "narHash": "sha256-MXYbnsD71iTCem3/hZwMvmAQq/7uRGsLoaNn/nbWv04=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "3612172937c01525cc14646aea107cc764ed5cb2", "rev": "8860cc9b5dfc855f648c5b8d47f23a0d456d4869",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -125,7 +125,6 @@
}; };
}; };
# Outputs # Outputs
outputsBuilder = channels: { outputsBuilder = channels: {
devShells.default = channels.nixpkgs.mkShell { devShells.default = channels.nixpkgs.mkShell {

View file

@ -18,8 +18,6 @@
users.users.vivian.extraGroups = [ "adbusers" ]; users.users.vivian.extraGroups = [ "adbusers" ];
# Bootloader. # Bootloader.
boot = { boot = {
bootspec.enable = true; bootspec.enable = true;
@ -27,8 +25,6 @@
resumeDevice = "/dev/nvme0n1p2"; resumeDevice = "/dev/nvme0n1p2";
loader.systemd-boot.enable = lib.mkForce false; loader.systemd-boot.enable = lib.mkForce false;
kernelPackages = pkgs.linuxPackages_6_6;
kernel.sysctl = { kernel.sysctl = {
"perf_event_paranoid" = 1; "perf_event_paranoid" = 1;
"kptr_restrict" = 0; "kptr_restrict" = 0;

View file

@ -12,7 +12,9 @@
programs.wireshark.enable = true; programs.wireshark.enable = true;
programs.wireshark.package = pkgs.wireshark; programs.wireshark.package = pkgs.wireshark;
virtualisation.lxc.enable = true; virtualisation.lxc.enable = false;
virtualisation.lxd.enable = false;
virtualisation.podman.enable = false; virtualisation.podman.enable = false;
virtualisation.docker.enable = true; virtualisation.docker.enable = true;
virtualisation.docker.storageDriver = "btrfs"; virtualisation.docker.storageDriver = "btrfs";