Compare commits

..

5 commits

Author SHA1 Message Date
048208711a
add dns cahce 2024-10-25 16:25:18 -04:00
19771ba1f4
Update flake.lock
Flake lock file updates:

• Updated input 'flatpaks':
    'github:GermanBread/declarative-flatpak/7c7dff6be2de79cac8bedd5af1883333253f7f9e' (2024-09-19)
  → 'github:GermanBread/declarative-flatpak/42cc2c4d97a03889d551cc82c43a0b124fd403f6' (2024-10-13)
• Updated input 'flatpaks/utils':
    'github:numtide/flake-utils/b1d9ab70662946ef0850d488da1c9019f3a9752a' (2024-03-11)
  → 'github:numtide/flake-utils/c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a' (2024-09-17)
• Updated input 'home-manager':
    'github:nix-community/home-manager/ffe2d07e771580a005e675108212597e5b367d2d' (2024-09-26)
  → 'github:nix-community/home-manager/2a4fd1cfd8ed5648583dadef86966a8231024221' (2024-10-15)
• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/30439d93eb8b19861ccbe3e581abf97bdc91b093' (2024-09-23)
  → 'github:NixOS/nixpkgs/a3c0b3b21515f74fd2665903d4ce6bc4dc81c77c' (2024-10-14)
2024-10-15 18:55:28 -04:00
d54bcb449a
Disable cliphist until fix upstream 2024-10-15 18:55:21 -04:00
7e02911606
Make obs global 2024-10-09 10:08:46 -04:00
6f22133ff1
Add cliphist and flameshot 2024-10-08 22:48:29 -04:00
3 changed files with 59 additions and 13 deletions

View file

@ -319,6 +319,35 @@
trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="];
};
services.nscd.config = ''
server-user nscd
enable-cache passwd yes
positive-time-to-live passwd 900
negative-time-to-live passwd 0
shared passwd yes
enable-cache group yes
positive-time-to-live group 900
negative-time-to-live group 0
shared group yes
enable-cache netgroup yes
positive-time-to-live netgroup 900
negative-time-to-live netgroup 0
shared netgroup yes
enable-cache hosts yes
positive-time-to-live hosts 900
negative-time-to-live hosts 0
shared hosts yes
enable-cache services yes
positive-time-to-live services 900
negative-time-to-live services 0
shared services yes
'';
programs.hyprland = {
enable = false;
#enableNvidiaPatches = true;

View file

@ -53,11 +53,11 @@
"utils": "utils"
},
"locked": {
"lastModified": 1726731488,
"narHash": "sha256-vL1oL9R5c75f+/5ysbRYms8l8lfNmabLuFLlJKsIxlg=",
"lastModified": 1728804768,
"narHash": "sha256-WG8KWmT72SA1XrmixxJwI1RRWrT9D97kkYSE5OfOJdg=",
"owner": "GermanBread",
"repo": "declarative-flatpak",
"rev": "7c7dff6be2de79cac8bedd5af1883333253f7f9e",
"rev": "42cc2c4d97a03889d551cc82c43a0b124fd403f6",
"type": "github"
},
"original": {
@ -95,11 +95,11 @@
]
},
"locked": {
"lastModified": 1727383923,
"narHash": "sha256-4/vacp3CwdGoPf8U4e/N8OsGYtO09WTcQK5FqYfJbKs=",
"lastModified": 1729027341,
"narHash": "sha256-IqWD7bA9iJVifvJlB4vs2KUXVhN+d9lECWdNB4jJ0tE=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "ffe2d07e771580a005e675108212597e5b367d2d",
"rev": "2a4fd1cfd8ed5648583dadef86966a8231024221",
"type": "github"
},
"original": {
@ -110,11 +110,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1727122398,
"narHash": "sha256-o8VBeCWHBxGd4kVMceIayf5GApqTavJbTa44Xcg5Rrk=",
"lastModified": 1728888510,
"narHash": "sha256-nsNdSldaAyu6PE3YUA+YQLqUDJh+gRbBooMMekZJwvI=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "30439d93eb8b19861ccbe3e581abf97bdc91b093",
"rev": "a3c0b3b21515f74fd2665903d4ce6bc4dc81c77c",
"type": "github"
},
"original": {
@ -167,11 +167,11 @@
"systems": "systems_2"
},
"locked": {
"lastModified": 1710146030,
"narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
"lastModified": 1726560853,
"narHash": "sha256-X6rJYSESBVr3hBoH0WbKE5KvhPU5bloyZ2L4K60/fPQ=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
"rev": "c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a",
"type": "github"
},
"original": {

View file

@ -12,6 +12,8 @@
#pkgs.cinny-desktop
pkgs.firefox
pkgs.kate
#pkgs.cliphist TODO: reenable once fixed upstream
pkgs.flameshot
pkgs.godot_4
pkgs.filezilla
pkgs.libsForQt5.lightly
@ -227,6 +229,19 @@
};
};
services.cliphist = {
enable = false; #TODO: change once fixed
allowImages = true;
};
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
wlrobs
droidcam-obs
];
};
home.sessionVariables = {
NIXOS_OZONE_WL = "1";
KUBECONFIG = "/home/insert/Desktop/k3s.yaml";
@ -298,7 +313,9 @@
#"''${modifier}+Return" = "exec ${cfg.config.terminal}";
"${modifier}+c" = "kill";
"${modifier}+r" = "exec ${config.wayland.windowManager.sway.config.menu}";
"${modifier}+p" = "exec grim -g \"\$(slurp)\" - | wl-copy";
#"${modifier}+p" = "exec grim -g \"\$(slurp)\" - | wl-copy";
"${modifier}+p" = "exec flameshot gui";
"${modifier}+o" = "exec cliphist list | wofi -S dmenu | cliphist decode | wl-copy";
"${modifier}+v" = "floating toggle";
};
startup = [