Compare commits

...

4 commits

6 changed files with 10 additions and 11 deletions

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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