Revert "work pls"

This reverts commit 3ea2da924a.
This commit is contained in:
Sakooooo 2023-07-07 23:00:29 +03:00
parent cc6aadec0a
commit 865df0d63c
Signed by: sako
GPG key ID: 3FD715D87D7725E0
10 changed files with 20 additions and 19 deletions

View file

@ -5,7 +5,7 @@
inputs.home-manager.nixosModules.default inputs.home-manager.nixosModules.default
# modules # modules
#i dont think this is right #i dont think this is right
#./modules ./modules
]; ];
nix.settings.experimental-features = [ "nix-command" "flakes"]; nix.settings.experimental-features = [ "nix-command" "flakes"];

View file

@ -9,7 +9,7 @@
../../default.nix ../../default.nix
]; ];
modules = { config = {
desktop = { desktop = {
bspwm.enable = true; bspwm.enable = true;
kitty.enable = true; kitty.enable = true;

View file

@ -1,6 +1,7 @@
{ {
# List your module files here # List your module files here
# my-module = import ./my-module.nix; # my-module = import ./my-module.nix;
#desktop = ./desktop;
desktop = import ./desktop; desktop = import ./desktop;
dev = import ./dev; dev = import ./dev;
# name conflict :( # name conflict :(

View file

@ -1,3 +1,3 @@
{ {
discord = import ./discord.nix; discord = ./discord.nix;
} }

View file

@ -1,5 +1,5 @@
{ {
lutris = import ./lutris.nix; lutris = ./lutris.nix;
steam = import ./steam.nix; steam = ./steam.nix;
wine = import ./wine.nix; wine = ./wine.nix;
} }

View file

@ -1,3 +1,3 @@
{ {
qutebrowser = import ./qutebrowser.nix; qutebrowser = ./qutebrowser.nix;
} }

View file

@ -1,7 +1,7 @@
{ {
editors = import ./editors/default.nix; editors = ./editors/default.nix;
cpp = import ./cpp.nix; cpp = ./cpp.nix;
javascript = import ./javascript.nix; javascript = ./javascript.nix;
python = import ./python.nix; python = ./python.nix;
rust = import ./rust.nix; rust = ./rust.nix;
} }

View file

@ -1,5 +1,5 @@
{ {
nvidia = import ./nvidia; nvidia = ./nvidia;
bluetooth = import ./bluetooth.nix; bluetooth = ./bluetooth.nix;
pipewire = import ./pipewire.nix; pipewire = ./pipewire.nix;
} }

View file

@ -1,4 +1,4 @@
{ {
mpd = import ./mpd; mpd = ./mpd;
ncmpcpp = import ./ncmpcpp; ncmpcpp = ./ncmpcpp;
} }

View file

@ -1,4 +1,4 @@
{ {
zsh = import ./zsh.nix; zsh = ./zsh.nix;
newsboat = import ./newsboat.nix; newsboat = ./newsboat.nix;
} }