e
This commit is contained in:
parent
44d4f1a6a8
commit
31999d0132
|
@ -19,6 +19,8 @@
|
|||
home.sessionVariables = {
|
||||
EDITOR = "vim";
|
||||
};
|
||||
|
||||
programs.gpg.enable =true;
|
||||
|
||||
colorScheme = inputs.nix-colors.colorSchemes.gruvbox-dark-medium;
|
||||
|
||||
|
|
|
@ -1,12 +1,24 @@
|
|||
{ 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;
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
programs.zsh.enable = true;
|
||||
programs.gnupg.agent.enable = true;
|
||||
boot.initrd.luks.gpgSupport = true;
|
||||
|
||||
home-manager = {
|
||||
extraSpecialArgs = {inherit inputs;};
|
||||
|
|
|
@ -1,20 +1,7 @@
|
|||
{ 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; [
|
||||
#Games
|
||||
alacritty
|
||||
|
@ -56,6 +43,7 @@
|
|||
gnome.gnome-calculator
|
||||
gnome.gnome-disk-utility
|
||||
#random utils
|
||||
pass
|
||||
tree
|
||||
rofi-wayland
|
||||
screen
|
||||
|
|
Loading…
Reference in a new issue