Compare commits
6 commits
c1309c7d92
...
6c7bc148ae
Author | SHA1 | Date | |
---|---|---|---|
6c7bc148ae | |||
cdb6094026 | |||
01b2cdb5e8 | |||
9fb28e9726 | |||
7d9d63c02b | |||
18eacb26dc |
5 changed files with 1059 additions and 36 deletions
3
bin/project-select.sh
Executable file
3
bin/project-select.sh
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
for d in `find ~/freistil -maxdepth 1 -type d`; do
|
||||||
|
echo -e "$d\034freistil\034freistil project `basename $d`"
|
||||||
|
done
|
1067
flake.lock
1067
flake.lock
File diff suppressed because it is too large
Load diff
|
@ -24,6 +24,9 @@
|
||||||
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.90.0-rc1.tar.gz";
|
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.90.0-rc1.tar.gz";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
niri = {
|
||||||
|
url = "github:sodiboo/niri-flake";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = {
|
outputs = {
|
||||||
|
@ -34,6 +37,7 @@
|
||||||
sops-nix,
|
sops-nix,
|
||||||
stylix,
|
stylix,
|
||||||
lix-module,
|
lix-module,
|
||||||
|
niri,
|
||||||
...
|
...
|
||||||
} @ inputs: let
|
} @ inputs: let
|
||||||
inherit (self) outputs;
|
inherit (self) outputs;
|
||||||
|
@ -47,7 +51,8 @@
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/cube.nix
|
./hosts/cube.nix
|
||||||
lix-module.nixosModules.default
|
lix-module.nixosModules.default
|
||||||
inputs.sops-nix.nixosModules.sops
|
sops-nix.nixosModules.sops
|
||||||
|
niri.nixosModules.niri
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
muhhStar = lib.nixosSystem {
|
muhhStar = lib.nixosSystem {
|
||||||
|
@ -71,6 +76,7 @@
|
||||||
inputs.nixvim.homeManagerModules.nixvim
|
inputs.nixvim.homeManagerModules.nixvim
|
||||||
inputs.sops-nix.homeManagerModules.sops
|
inputs.sops-nix.homeManagerModules.sops
|
||||||
inputs.stylix.homeManagerModules.stylix
|
inputs.stylix.homeManagerModules.stylix
|
||||||
|
inputs.niri.homeModules.niri
|
||||||
./home.nix
|
./home.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
8
home.nix
8
home.nix
|
@ -22,6 +22,7 @@
|
||||||
_1password
|
_1password
|
||||||
_1password-gui
|
_1password-gui
|
||||||
atkinson-hyperlegible
|
atkinson-hyperlegible
|
||||||
|
alacritty
|
||||||
brightnessctl
|
brightnessctl
|
||||||
curl
|
curl
|
||||||
ddcutil
|
ddcutil
|
||||||
|
@ -29,6 +30,7 @@
|
||||||
dog
|
dog
|
||||||
fd
|
fd
|
||||||
ffmpegthumbnailer
|
ffmpegthumbnailer
|
||||||
|
fuzzel
|
||||||
git
|
git
|
||||||
htop
|
htop
|
||||||
httpie
|
httpie
|
||||||
|
@ -242,6 +244,9 @@
|
||||||
vimKeys = true;
|
vimKeys = true;
|
||||||
sidebar.enable = true;
|
sidebar.enable = true;
|
||||||
};
|
};
|
||||||
|
niri = {
|
||||||
|
enable = false;
|
||||||
|
};
|
||||||
nixvim = {
|
nixvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultEditor = true;
|
defaultEditor = true;
|
||||||
|
@ -501,7 +506,8 @@
|
||||||
image = /home/muhh/Sync/Backgrounds/wald.jpg;
|
image = /home/muhh/Sync/Backgrounds/wald.jpg;
|
||||||
polarity = "dark";
|
polarity = "dark";
|
||||||
# base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
# base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
||||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-city-terminal-dark.yaml";
|
# base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-city-terminal-dark.yaml";
|
||||||
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/everforest.yaml";
|
||||||
fonts = {
|
fonts = {
|
||||||
monospace = {
|
monospace = {
|
||||||
package = (pkgs.nerdfonts.override { fonts = [ "Iosevka" ]; });
|
package = (pkgs.nerdfonts.override { fonts = [ "Iosevka" ]; });
|
||||||
|
|
|
@ -33,6 +33,14 @@
|
||||||
# Enable networking
|
# Enable networking
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
||||||
|
# Workaround for broken networkmanager/systemd thing
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/180175#issuecomment-1658731959
|
||||||
|
systemd.services.NetworkManager-wait-online = {
|
||||||
|
serviceConfig = {
|
||||||
|
ExecStart = [ "" "${pkgs.networkmanager}/bin/nm-online -q" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Set your time zone.
|
# Set your time zone.
|
||||||
time.timeZone = "Europe/Berlin";
|
time.timeZone = "Europe/Berlin";
|
||||||
|
|
||||||
|
@ -139,6 +147,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
brightnessKeys.enable = true;
|
brightnessKeys.enable = true;
|
||||||
};
|
};
|
||||||
|
# niri.enable = true;
|
||||||
sway.enable = true;
|
sway.enable = true;
|
||||||
};
|
};
|
||||||
virtualisation = {
|
virtualisation = {
|
||||||
|
|
Loading…
Reference in a new issue