Compare commits

...

4 commits

6 changed files with 10 additions and 11 deletions

View file

@ -4,8 +4,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
nil nil
ffmpeg ffmpeg
yt-dlp fastfetch
hyfetch
]; ];
networking = { networking = {

View file

@ -14,7 +14,6 @@
../programs/ghostty.nix ../programs/ghostty.nix
../programs/kde.nix ../programs/kde.nix
../programs/games.nix
# ../programs/vscode.nix # ../programs/vscode.nix
# the world if hyprland # the world if hyprland
@ -86,16 +85,12 @@
obs-studio obs-studio
obsidian obsidian
polkit_gnome polkit_gnome
shotcut
strawberry strawberry
vscode vscode
(vesktop.override {withSystemVencord = false;}) (vesktop.override {withSystemVencord = false;})
]; ];
}; };
xdg.enable = true;
gtk.enable = true;
}; };
i18n.extraLocaleSettings = { i18n.extraLocaleSettings = {

View file

@ -11,8 +11,6 @@
enable = true; enable = true;
interactiveShellInit = with pkgs; '' interactiveShellInit = with pkgs; ''
set -gx SSH_AUTH_SOCK /run/user/1000/ssh-agent
if test -f ~/.ssh/id_ed25519 if test -f ~/.ssh/id_ed25519
ssh-add -l | grep -q (ssh-keygen -lf ~/.ssh/id_ed25519) || ssh-add ~/.ssh/id_ed25519 ssh-add -l | grep -q (ssh-keygen -lf ~/.ssh/id_ed25519) || ssh-add ~/.ssh/id_ed25519
end end

View file

@ -1,11 +1,13 @@
{ {
camasca,
pkgs, pkgs,
camasca,
... ...
}: { }: {
services.desktopManager.plasma6.enable = true; services.desktopManager.plasma6.enable = true;
environment = { environment = {
variables.SSH_AUTH_SOCK = "/run/user/1000/ssh-agent";
systemPackages = with pkgs; [ systemPackages = with pkgs; [
flameshot flameshot
camasca.packages.${pkgs.system}.koi camasca.packages.${pkgs.system}.koi

View file

@ -1,5 +1,8 @@
{pkgs, ...}: { {pkgs, ...}: {
imports = [./nvidia.nix]; imports = [
./nvidia.nix
../../programs/games.nix
];
services.xserver.videoDrivers = ["amdgpu"]; services.xserver.videoDrivers = ["amdgpu"];

View file

@ -1,4 +1,6 @@
{pkgs, ...}: { {pkgs, ...}: {
imports = [../../programs/games.nix];
boot = { boot = {
initrd.kernelModules = ["i915"]; initrd.kernelModules = ["i915"];
kernelParams = ["i915.force_probe=9a49"]; kernelParams = ["i915.force_probe=9a49"];