This commit is contained in:
LunarAkai 2025-03-29 13:48:46 +01:00
commit 9b0cff715f
9 changed files with 51 additions and 14 deletions

24
flake.lock generated
View file

@ -152,11 +152,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1741877836, "lastModified": 1743136572,
"narHash": "sha256-dInGmyx0eG9ETEyyLZ6J+S7Mj9HNhT9wuh/iYHM1l/k=", "narHash": "sha256-uwaVrKgi6g1TUq56247j6QvvFtYHloCkjCrEpGBvV54=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "56374cc64d58451b359bb4e8502387d3a96e7c7b", "rev": "1efd2503172016a6742c87b47b43ca2c8145607d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -193,11 +193,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1742090119, "lastModified": 1743213162,
"narHash": "sha256-I+NlLtHpTsItYkHo4fFdM6moBHF156wM11TPWLcwdic=", "narHash": "sha256-9UU0x2fZORsX6PEpzkIAD/7+bwm+javJtZA/411ZmLg=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nix-vscode-extensions", "repo": "nix-vscode-extensions",
"rev": "adcb8b54d64484bb74f1480acefc3c686f318917", "rev": "1b2a53e3478225bc35d14ae75ea9e7b749c16d5b",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -270,11 +270,11 @@
}, },
"nixpkgs-stable": { "nixpkgs-stable": {
"locked": { "locked": {
"lastModified": 1741862977, "lastModified": 1742937945,
"narHash": "sha256-prZ0M8vE/ghRGGZcflvxCu40ObKaB+ikn74/xQoNrGQ=", "narHash": "sha256-lWc+79eZRyvHp/SqMhHTMzZVhpxkRvthsP1Qx6UCq0E=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "cdd2ef009676ac92b715ff26630164bb88fec4e0", "rev": "d02d88f8de5b882ccdde0465d8fa2db3aa1169f7",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -302,11 +302,11 @@
}, },
"nixpkgs_3": { "nixpkgs_3": {
"locked": { "locked": {
"lastModified": 1741513245, "lastModified": 1743095683,
"narHash": "sha256-7rTAMNTY1xoBwz0h7ZMtEcd8LELk9R5TzBPoHuhNSCk=", "narHash": "sha256-gWd4urRoLRe8GLVC/3rYRae1h+xfQzt09xOfb0PaHSk=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "e3e32b642a31e6714ec1b712de8c91a3352ce7e1", "rev": "5e5402ecbcb27af32284d4a62553c019a3a49ea6",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -0,0 +1,8 @@
{pkgs, ...}: {
programs.atuin = {
enable = true;
settings = {
search_mode = "fuzzy";
};
};
}

View file

@ -1,6 +1,7 @@
{pkgs, ...}: { {pkgs, ...}: {
imports = [ imports = [
./zsh ./zsh
./atuin.nix
./gh.nix ./gh.nix
./git.nix ./git.nix
./oh-my-posh.nix ./oh-my-posh.nix

View file

@ -1,4 +1,4 @@
{...}: { {pkgs, ...}: {
imports = [ imports = [
./alacritty.nix ./alacritty.nix
./fonts.nix ./fonts.nix

View file

@ -0,0 +1,3 @@
{pkgs, ...}: {
environment.systemPackages = [pkgs.distrobox];
}

View file

@ -1,4 +1,4 @@
{ {pkgs, ...}: {
# Enable the GNOME Desktop Environment. # Enable the GNOME Desktop Environment.
services = { services = {
xserver = { xserver = {
@ -13,6 +13,14 @@
}; };
}; };
environment.systemPackages = with pkgs; [
gnome-tweaks
# Extension
gnomeExtensions.arcmenu
gnomeExtensions.blur-my-shell
];
# adds alacritty to nautilus # adds alacritty to nautilus
programs.nautilus-open-any-terminal = { programs.nautilus-open-any-terminal = {
enable = true; enable = true;

View file

@ -0,0 +1,9 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
spotifyd
spotify-player
ncspot
];
# Local Discovery
networking.firewall.allowedTCPPorts = [57621];
}

View file

@ -21,9 +21,14 @@ in {
# thunderbird # thunderbird
gnome-software gnome-software
neovim neovim
gcc
cmake
rustup rustup
pkg-config
openssl
protonvpn-gui protonvpn-gui
ansible ansible
godot
]; ];
}; };

View file

@ -18,7 +18,9 @@
../common/optional/flatpak.nix ../common/optional/flatpak.nix
../common/optional/ckb-next.nix ../common/optional/ckb-next.nix
../common/optional/docker.nix ../common/optional/docker.nix
../common/optional/distrobox.nix
../common/optional/virt-manager.nix ../common/optional/virt-manager.nix
../common/optional/spotify.nix
# Include the results of the hardware scan. # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
@ -59,6 +61,7 @@
gnome-menus gnome-menus
inputs.nix-software-center.packages.${system}.nix-software-center inputs.nix-software-center.packages.${system}.nix-software-center
inputs.nixos-conf-editor.packages.${system}.nixos-conf-editor inputs.nixos-conf-editor.packages.${system}.nixos-conf-editor
xorg.libX11
]; ];
# ssh agent # ssh agent