Fix imports

This commit is contained in:
Marko Korhonen 2024-10-05 17:25:45 +03:00
parent c8daed198a
commit e9fe94438b
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890
4 changed files with 30 additions and 18 deletions

View file

@ -1,21 +1,7 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
imports = [ imports = [ ./programs/configuration.nix ];
./bat.nix
./eza.nix
./firefox.nix
./fzf.nix
./git.nix
./gnome.nix
./gpg.nix
./neovim.nix
./pass.nix
./ripgrep.nix
./ssh.nix
./zellij.nix
./zsh.nix
];
home = { home = {
username = "functionalhacker"; username = "functionalhacker";

View file

@ -0,0 +1,20 @@
{ ... }:
{
imports = [
./bat.nix
./eza.nix
./firefox.nix
./fzf.nix
./git.nix
./gnome.nix
./gpg.nix
./neovim.nix
./pass.nix
./ripgrep.nix
./ssh.nix
./zellij.nix
./zsh.nix
];
}

View file

@ -1,9 +1,7 @@
{ ... }: { ... }:
{ {
imports = [ imports = [ ./programs/configuration.nix ];
./programs/gnome.nix
];
home = { home = {
username = "som"; username = "som";

View file

@ -0,0 +1,8 @@
{ ... }:
{
imports = [
./gnome.nix
];
}