WIP: Switch to NixOS #5

Draft
FunctionalHacker wants to merge 1349 commits from nix into main
4 changed files with 30 additions and 18 deletions
Showing only changes of commit e9fe94438b - Show all commits

View file

@ -1,21 +1,7 @@
{ pkgs, ... }:
{
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
];
imports = [ ./programs/configuration.nix ];
home = {
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 = [
./programs/gnome.nix
];
imports = [ ./programs/configuration.nix ];
home = {
username = "som";

View file

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