This commit is contained in:
Víðir Valberg Guðmundsson 2024-02-29 11:10:49 +01:00
parent a06edbdeb1
commit 6c70c987c1
4 changed files with 36 additions and 26 deletions

View file

@ -104,26 +104,6 @@
description = "Vidir Valberg Gudmundsson"; description = "Vidir Valberg Gudmundsson";
extraGroups = [ "networkmanager" "wheel" "docker" ]; extraGroups = [ "networkmanager" "wheel" "docker" ];
shell = pkgs.fish; shell = pkgs.fish;
packages = with pkgs; [
firefox
thunderbird
keepassxc
jetbrains.pycharm-professional
slack
gnome.gnome-tweaks
deja-dup
signal-desktop
tmux
obsidian
element-desktop
discord
pyenv
nerdfonts
blackbox-terminal
ripgrep
pre-commit
spotify
];
}; };
nixpkgs.config.permittedInsecurePackages = [ nixpkgs.config.permittedInsecurePackages = [

View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1708806879, "lastModified": 1708988456,
"narHash": "sha256-MSbxtF3RThI8ANs/G4o1zIqF5/XlShHvwjl9Ws0QAbI=", "narHash": "sha256-RCz7Xe64tN2zgWk+MVHkzg224znwqknJ1RnB7rVqUWw=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "4ee704cb13a5a7645436f400b9acc89a67b9c08a", "rev": "1d085ea4444d26aa52297758b333b449b2aa6fca",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -22,11 +22,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1708807242, "lastModified": 1709150264,
"narHash": "sha256-sRTRkhMD4delO/hPxxi+XwLqPn8BuUq6nnj4JqLwOu0=", "narHash": "sha256-HofykKuisObPUfj0E9CJVfaMhawXkYx3G8UIFR/XQ38=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "73de017ef2d18a04ac4bfd0c02650007ccb31c2a", "rev": "9099616b93301d5cf84274b184a3a5ec69e94e08",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -0,0 +1,3 @@
{
wayland.windowManager.hyprland.enable = true;
}

View file

@ -6,6 +6,8 @@
home.homeDirectory = "/home/valberg"; home.homeDirectory = "/home/valberg";
home.stateVersion = "23.11"; home.stateVersion = "23.11";
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [ home.packages = with pkgs; [
ansible ansible
python311Packages.tox python311Packages.tox
@ -14,6 +16,27 @@
zoxide zoxide
ruff ruff
gnomeExtensions.forge gnomeExtensions.forge
firefox
thunderbird
keepassxc
jetbrains.pycharm-professional
slack
gnome.gnome-tweaks
deja-dup
signal-desktop
tmux
obsidian
element-desktop
discord
pyenv
nerdfonts
blackbox-terminal
ripgrep
pre-commit
tidal-hifi
hatch
rustc rustc
cargo cargo
@ -21,4 +44,8 @@
rust-jemalloc-sys rust-jemalloc-sys
]; ];
imports = [
./apps/hyprland.nix
];
} }