This commit is contained in:
Matt Nish-Lapidus 2024-09-29 01:13:48 -04:00
parent a9d4ce0f50
commit 1d803ad57e
3 changed files with 16 additions and 69 deletions

60
flake.lock generated
View file

@ -1,47 +1,5 @@
{ {
"nodes": { "nodes": {
"affinity-nix": {
"inputs": {
"elemental-wine-source": "elemental-wine-source",
"nixpkgs": [
"nixpkgs"
],
"winetricks-source": "winetricks-source"
},
"locked": {
"lastModified": 1726286596,
"narHash": "sha256-3ibDdGv2ns2N7ol3qVpfpPtPAf7QJleIg1xfKT3E+i0=",
"owner": "mrshmllow",
"repo": "affinity-nix",
"rev": "13ab0d6b33c5d7ba556f51a523d84ba6d2acba5a",
"type": "github"
},
"original": {
"owner": "mrshmllow",
"ref": "main",
"repo": "affinity-nix",
"type": "github"
}
},
"elemental-wine-source": {
"flake": false,
"locked": {
"host": "gitlab.winehq.org",
"lastModified": 1693121664,
"narHash": "sha256-eMN4SN8980yteYODN2DQIVNEJMsGQE8OIdPs/7DbvqQ=",
"owner": "ElementalWarrior",
"repo": "wine",
"rev": "c12ed1469948f764817fa17efd2299533cf3fe1c",
"type": "gitlab"
},
"original": {
"host": "gitlab.winehq.org",
"owner": "ElementalWarrior",
"ref": "c12ed1469948f764817fa17efd2299533cf3fe1c",
"repo": "wine",
"type": "gitlab"
}
},
"home-manager": { "home-manager": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@ -172,7 +130,6 @@
}, },
"root": { "root": {
"inputs": { "inputs": {
"affinity-nix": "affinity-nix",
"home-manager": "home-manager", "home-manager": "home-manager",
"kmonad": "kmonad", "kmonad": "kmonad",
"musnix": "musnix", "musnix": "musnix",
@ -181,23 +138,6 @@
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs",
"nixpkgs-stable": "nixpkgs-stable" "nixpkgs-stable": "nixpkgs-stable"
} }
},
"winetricks-source": {
"flake": false,
"locked": {
"lastModified": 1704453875,
"narHash": "sha256-YTEgb19aoM54KK8/IjrspoChzVnWAEItDlTxpfpS52w=",
"owner": "winetricks",
"repo": "winetricks",
"rev": "bc91718a5cad45e9f33de9b351a5960d5395bed5",
"type": "github"
},
"original": {
"owner": "winetricks",
"ref": "20240105",
"repo": "winetricks",
"type": "github"
}
} }
}, },
"root": "root", "root": "root",

View file

@ -13,10 +13,11 @@
nix-flatpak.url = "github:gmodena/nix-flatpak"; # unstable branch. Use github:gmodena/nix-flatpak/?ref=<tag> to pin releases. nix-flatpak.url = "github:gmodena/nix-flatpak"; # unstable branch. Use github:gmodena/nix-flatpak/?ref=<tag> to pin releases.
affinity-nix = { # affinity-nix = {
url = "github:mrshmllow/affinity-nix/main"; # url = "github:mrshmllow/affinity-nix/main";
inputs.nixpkgs.follows = "nixpkgs"; # inputs.nixpkgs.follows = "nixpkgs";
}; # flake = true;
# };
kmonad = { kmonad = {
url = "git+https://github.com/kmonad/kmonad?submodules=1&dir=nix"; url = "git+https://github.com/kmonad/kmonad?submodules=1&dir=nix";
@ -48,7 +49,6 @@
pkgs = nixpkgs.legacyPackages.x86_64-linux; pkgs = nixpkgs.legacyPackages.x86_64-linux;
modules = [ modules = [
nix-flatpak.homeManagerModules.nix-flatpak nix-flatpak.homeManagerModules.nix-flatpak
#nixos-hardware
./home/home.nix ./home/home.nix
]; ];
}; };

View file

@ -54,6 +54,7 @@
wezterm wezterm
lazygit lazygit
nnn nnn
icloudpd
jetbrains-mono jetbrains-mono
fishPlugins.foreign-env fishPlugins.foreign-env
@ -74,6 +75,7 @@
gnomeExtensions.pano gnomeExtensions.pano
gnome-software gnome-software
gnome-tweaks gnome-tweaks
gnome-photos
colloid-gtk-theme colloid-gtk-theme
colloid-icon-theme colloid-icon-theme
whitesur-gtk-theme whitesur-gtk-theme
@ -84,6 +86,7 @@
papers papers
newsflash newsflash
nyxt
librewolf librewolf
ungoogled-chromium ungoogled-chromium
obsidian obsidian
@ -103,6 +106,10 @@
zotero_7 zotero_7
handbrake handbrake
renoise renoise
yabridge
yabridgectl
ansel
rawtherapee
]; ];
username = "emenel"; username = "emenel";
@ -146,9 +153,9 @@
}; };
dconf.settings = { dconf.settings = {
"org/gnome/desktop/wm/keybindings" = { "org/gnome/shell/keybindings" = {
shift-overview-up = ""; shift-overview-up = ["disabled"];
shift-overview-down = ""; shift-overview-down = ["disabled"];
}; };
}; };
@ -183,7 +190,7 @@
xdg.configFile."starship.toml".source = ../dotfiles/dot_config/starship.toml; xdg.configFile."starship.toml".source = ../dotfiles/dot_config/starship.toml;
xdg.configFile."wezterm".source = ../dotfiles/dot_config/wezterm; xdg.configFile."wezterm".source = ../dotfiles/dot_config/wezterm;
xdg.configFile."fish/functions" = { home.file.".config/fish/functions" = {
source = ../dotfiles/dot_config/fish/functions; source = ../dotfiles/dot_config/fish/functions;
recursive = true; recursive = true;
}; };