Reorganize configuration and prep for flakes

This commit is contained in:
Vili Sinervä 2025-06-01 14:15:50 +03:00
parent 78439054dd
commit dea7fcbf96
Signed by: Vili Sinervä
SSH key fingerprint: SHA256:FladqYjaE4scJY3Hi+gnShZ6ygnTJgixy0I6BAoHyos
19 changed files with 250 additions and 95 deletions

View file

@ -1,8 +1,8 @@
{ pkgs, ... }:
{
imports = [
./symlinked/symlinks.nix
../shared/users/vili
./programs/symlinked/symlinks.nix
../shared/users/vili.nix
];
environment.systemPackages = with pkgs; [

View file

@ -1,12 +1,4 @@
{ ... }:
let
nixvim = import (
builtins.fetchGit {
url = "https://github.com/nix-community/nixvim";
ref = "nixos-25.05";
}
);
in
{ nixvim, ... }:
{
imports = [ nixvim.nixosModules.nixvim ];