This commit is contained in:
joygnu 2024-07-01 16:57:23 +02:00
parent 1048f2ca60
commit 464f65ec47
3 changed files with 18 additions and 16 deletions

View file

@ -20,6 +20,8 @@
EDITOR = "vim"; EDITOR = "vim";
}; };
programs.gpg.enable =true;
colorScheme = inputs.nix-colors.colorSchemes.gruvbox-dark-medium; colorScheme = inputs.nix-colors.colorSchemes.gruvbox-dark-medium;
} }

View file

@ -1,12 +1,24 @@
{ config, inputs, pkgs, ... }: { config, inputs, pkgs, ... }:
{ {
services.blueman.enable = true;
hardware.bluetooth.enable = true;
virtualisation.docker.rootless.enable = true;
virtualisation.docker.enable = true;
nixpkgs.config.allowUnfree = true;
programs.steam.enable = true;
services = {
syncthing = {
enable = true;
user = "joy";
dataDir = "/home/joy/";
configDir = "/home/joy/.config/syncthing";
};
};
programs.hyprland.enable = true; programs.hyprland.enable = true;
users.defaultUserShell = pkgs.zsh; users.defaultUserShell = pkgs.zsh;
programs.zsh.enable = true; programs.zsh.enable = true;
programs.gnupg.agent.enable = true;
boot.initrd.luks.gpgSupport = true;
home-manager = { home-manager = {
extraSpecialArgs = {inherit inputs;}; extraSpecialArgs = {inherit inputs;};

View file

@ -1,20 +1,7 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
services.blueman.enable = true;
hardware.bluetooth.enable = true;
virtualisation.docker.rootless.enable = true;
virtualisation.docker.enable = true;
nixpkgs.config.allowUnfree = true;
programs.steam.enable = true;
services = {
syncthing = {
enable = true;
user = "joy";
dataDir = "/home/joy/";
configDir = "/home/joy/.config/syncthing";
};
};
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
#Games #Games
alacritty alacritty
@ -56,6 +43,7 @@
gnome.gnome-calculator gnome.gnome-calculator
gnome.gnome-disk-utility gnome.gnome-disk-utility
#random utils #random utils
pass
tree tree
rofi-wayland rofi-wayland
screen screen