mirror of
https://github.com/larstvei/nix-config.git
synced 2026-02-01 16:20:12 +00:00
Compare commits
No commits in common. "41152a4c29ee5b9d3e2ac5f23d123a9975008546" and "fc51b84abdc160498db51661dff0b697fa4c406b" have entirely different histories.
41152a4c29
...
fc51b84abd
@ -18,6 +18,6 @@
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
extraSpecialArgs = { inherit emacs-larstvei; };
|
||||
users.larstvei.imports = [ ../../modules/home/full ];
|
||||
users.larstvei.imports = [ ../../modules/home ];
|
||||
};
|
||||
}
|
||||
|
||||
@ -6,11 +6,6 @@
|
||||
../../modules/nixos
|
||||
];
|
||||
|
||||
home-manager.users.larstvei.imports = [
|
||||
../../modules/home/full
|
||||
../../modules/desktop
|
||||
];
|
||||
|
||||
networking.hostName = "larstvei-think";
|
||||
|
||||
# Bootloader.
|
||||
|
||||
@ -4,11 +4,6 @@
|
||||
../../modules/nixos
|
||||
];
|
||||
|
||||
home-manager.users.larstvei.imports = [
|
||||
../../modules/home/minimal
|
||||
../../modules/desktop
|
||||
];
|
||||
|
||||
networking.hostName = "larstvei-vm";
|
||||
|
||||
# VM-friendly bits
|
||||
|
||||
@ -1,12 +1,5 @@
|
||||
{ pkgs, zen-browser, ... }:
|
||||
{
|
||||
services.greetd = {
|
||||
enable = true;
|
||||
settings.default_session = {
|
||||
command = "hyprland";
|
||||
user = "larstvei";
|
||||
};
|
||||
};
|
||||
|
||||
home.packages = [
|
||||
pkgs.adwaita-icon-theme
|
||||
|
||||
@ -1,4 +1,9 @@
|
||||
{
|
||||
imports = [
|
||||
../languages
|
||||
../tools
|
||||
];
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
home.stateVersion = "24.11";
|
||||
|
||||
@ -1,7 +0,0 @@
|
||||
{
|
||||
imports = [
|
||||
../.
|
||||
../../languages
|
||||
../../tools
|
||||
];
|
||||
}
|
||||
@ -1,13 +0,0 @@
|
||||
{
|
||||
imports = [
|
||||
../.
|
||||
../../languages/c
|
||||
../../languages/clojure
|
||||
../../languages/nix
|
||||
../../languages/python
|
||||
../../tools/editor
|
||||
../../tools/git
|
||||
../../tools/shell
|
||||
../../tools/utils
|
||||
];
|
||||
}
|
||||
@ -1,8 +0,0 @@
|
||||
{
|
||||
imports = [
|
||||
../.
|
||||
../../tools/editor
|
||||
../../tools/git
|
||||
../../tools/shell
|
||||
];
|
||||
}
|
||||
@ -15,6 +15,10 @@
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
extraSpecialArgs = { inherit nanostatus emacs-larstvei zen-browser; };
|
||||
users.larstvei.imports = [
|
||||
../home
|
||||
../desktop
|
||||
];
|
||||
};
|
||||
|
||||
users.users.larstvei = {
|
||||
@ -30,6 +34,14 @@
|
||||
|
||||
console.keyMap = "us";
|
||||
|
||||
services.greetd = {
|
||||
enable = true;
|
||||
settings.default_session = {
|
||||
command = "hyprland";
|
||||
user = "larstvei";
|
||||
};
|
||||
};
|
||||
|
||||
fonts = {
|
||||
fontconfig = {
|
||||
enable = true;
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
zotero
|
||||
# zotero
|
||||
];
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user