Compare commits

...

4 Commits

10 changed files with 47 additions and 19 deletions

View File

@ -18,6 +18,6 @@
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = { inherit emacs-larstvei; };
users.larstvei.imports = [ ../../modules/home ];
users.larstvei.imports = [ ../../modules/home/full ];
};
}

View File

@ -6,6 +6,11 @@
../../modules/nixos
];
home-manager.users.larstvei.imports = [
../../modules/home/full
../../modules/desktop
];
networking.hostName = "larstvei-think";
# Bootloader.

View File

@ -4,6 +4,11 @@
../../modules/nixos
];
home-manager.users.larstvei.imports = [
../../modules/home/minimal
../../modules/desktop
];
networking.hostName = "larstvei-vm";
# VM-friendly bits

View File

@ -1,5 +1,12 @@
{ pkgs, zen-browser, ... }:
{
services.greetd = {
enable = true;
settings.default_session = {
command = "hyprland";
user = "larstvei";
};
};
home.packages = [
pkgs.adwaita-icon-theme

View File

@ -1,9 +1,4 @@
{
imports = [
../languages
../tools
];
programs.home-manager.enable = true;
home.stateVersion = "24.11";

View File

@ -0,0 +1,7 @@
{
imports = [
../.
../../languages
../../tools
];
}

View File

@ -0,0 +1,13 @@
{
imports = [
../.
../../languages/c
../../languages/clojure
../../languages/nix
../../languages/python
../../tools/editor
../../tools/git
../../tools/shell
../../tools/utils
];
}

View File

@ -0,0 +1,8 @@
{
imports = [
../.
../../tools/editor
../../tools/git
../../tools/shell
];
}

View File

@ -15,10 +15,6 @@
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = { inherit nanostatus emacs-larstvei zen-browser; };
users.larstvei.imports = [
../home
../desktop
];
};
users.users.larstvei = {
@ -34,14 +30,6 @@
console.keyMap = "us";
services.greetd = {
enable = true;
settings.default_session = {
command = "hyprland";
user = "larstvei";
};
};
fonts = {
fontconfig = {
enable = true;

View File

@ -1,6 +1,6 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
# zotero
zotero
];
}