refactor: clean up files and remove unecessary comments

Signed-off-by: Jo <johannesreckers2006@gmail.com>
This commit is contained in:
Jo 2024-05-12 22:36:39 +02:00
parent 4b511098ec
commit bbe6ab62c4
8 changed files with 148 additions and 53 deletions

View file

@ -1,5 +1,21 @@
{ {
"nodes": { "nodes": {
"flake-compat": {
"flake": false,
"locked": {
"lastModified": 1688025799,
"narHash": "sha256-ktpB4dRtnksm9F5WawoIkEneh1nrEvuxb5lJFt1iOyw=",
"owner": "nix-community",
"repo": "flake-compat",
"rev": "8bf105319d44f6b9f0d764efa4fdef9f1cc9ba1c",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "flake-compat",
"type": "github"
}
},
"home-manager": { "home-manager": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@ -7,11 +23,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1713818326, "lastModified": 1715077503,
"narHash": "sha256-aw3xbVPJauLk/bbrlakIYxKpeuMWzA2feGrkIpIuXd8=", "narHash": "sha256-AfHQshzLQfUqk/efMtdebHaQHqVntCMjhymQzVFLes0=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "67de98ae6eed5ad6f91b1142356d71a87ba97f21", "rev": "6e277d9566de9976f47228dd8c580b97488734d4",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -21,13 +37,46 @@
"type": "github" "type": "github"
} }
}, },
"nixos-cosmic": {
"inputs": {
"flake-compat": "flake-compat",
"nixpkgs": "nixpkgs"
},
"locked": {
"lastModified": 1715262380,
"narHash": "sha256-jz4zg7xz14PTkrTiH96tVDvCxftpDVp6vRxnO7OVReA=",
"path": "/nix/store/gz6hf4bgagrqvkl7p7gxpznnlqgvyyjy-source",
"rev": "1914ef3d3bbbf79892b48e9162b47f64ff99bcd5",
"type": "path"
},
"original": {
"id": "nixos-cosmic",
"type": "indirect"
}
},
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1713714899, "lastModified": 1715266358,
"narHash": "sha256-+z/XjO3QJs5rLE5UOf015gdVauVRQd2vZtsFkaXBq2Y=", "narHash": "sha256-doPgfj+7FFe9rfzWo1siAV2mVCasW+Bh8I1cToAXEE4=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "f1010e0469db743d14519a1efd37e23f8513d714",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1715087517,
"narHash": "sha256-CLU5Tsg24Ke4+7sH8azHWXKd0CFd4mhLWfhYgUiDBpQ=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "6143fc5eeb9c4f00163267708e26191d1e918932", "rev": "b211b392b8486ee79df6cdfb1157ad2133427a29",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -47,11 +96,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1713805120, "lastModified": 1714856962,
"narHash": "sha256-WmqVyblqQ3g2Bmm+WONc1OnUuOuULQRIQya9wCLp5o8=", "narHash": "sha256-2te5GG8TVNBF44uMF4G0XFGW+Jt02i/ZkspSNFzjgT0=",
"owner": "pjones", "owner": "pjones",
"repo": "plasma-manager", "repo": "plasma-manager",
"rev": "ffeef9dc96a5a0e442479c94a6000f93b69aeaac", "rev": "1554e19ede17de46106dd95820eeea05086a5720",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -63,7 +112,8 @@
"root": { "root": {
"inputs": { "inputs": {
"home-manager": "home-manager", "home-manager": "home-manager",
"nixpkgs": "nixpkgs", "nixos-cosmic": "nixos-cosmic",
"nixpkgs": "nixpkgs_2",
"plasma-manager": "plasma-manager" "plasma-manager": "plasma-manager"
} }
} }

View file

@ -19,7 +19,7 @@
}; };
}; };
outputs = { self, nixpkgs, home-manager, plasma-manager, ... } @inputs: outputs = { self, nixpkgs, home-manager, plasma-manager, nixos-cosmic, ... } @inputs:
let let
inherit (self) outputs; inherit (self) outputs;
@ -46,10 +46,8 @@
nixosConfigurations = { nixosConfigurations = {
puzzlevision = nixpkgs.lib.nixosSystem { puzzlevision = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs;}; specialArgs = {inherit inputs outputs;};
modules = [ modules = [
./hosts/puzzlevision/configuration.nix ./hosts/puzzlevision/configuration.nix
./modules/nixos/desktop/kde.nix
]; ];
}; };
}; };
@ -60,9 +58,8 @@
"jo@puzzlevision" = home-manager.lib.homeManagerConfiguration { "jo@puzzlevision" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
extraSpecialArgs = {inherit inputs outputs;}; extraSpecialArgs = {inherit inputs outputs;};
# > Our main home-manager configuration file <
modules = [ modules = [
./home-manager/puzzlevision/home.nix ./users/jo_puzzlevision/home.nix
]; ];
}; };
}; };

View file

@ -3,7 +3,7 @@
lib, lib,
config, config,
pkgs, pkgs,
catppuccinifier, outputs,
... ...
}: { }: {
# You can import other NixOS modules here # You can import other NixOS modules here
@ -11,18 +11,11 @@
# If you want to use modules from other flakes (such as nixos-hardware): # If you want to use modules from other flakes (such as nixos-hardware):
# inputs.hardware.nixosModules.common-cpu-amd # inputs.hardware.nixosModules.common-cpu-amd
# inputs.hardware.nixosModules.common-ssd # inputs.hardware.nixosModules.common-ssd
outputs.nixosModules.desktop.kde
# Import your generated (nixos-generate-config) hardware configuration
./hardware-configuration.nix ./hardware-configuration.nix
]; ];
nixpkgs = { nixpkgs = {
# You can add overlays here
overlays = [
# If you want to use overlays exported from other flakes:
# neovim-nightly-overlay.overlays.default
];
# Configure your nixpkgs instance
config = { config = {
allowUnfree = true; allowUnfree = true;
}; };
@ -61,8 +54,21 @@
fileSystems."/".options = [ "noatime" "nodiratime" "discard" ]; fileSystems."/".options = [ "noatime" "nodiratime" "discard" ];
# Bootloader. # Bootloader.
boot.loader.systemd-boot.enable = true; boot.loader.grub = {
boot.loader.efi.canTouchEfiVariables = true; enable = true;
devices = [ "nodev" ];
efiInstallAsRemovable = true;
efiSupport = true;
extraEntries = ''
menuentry "Reboot" {
reboot
}
menuentry "Poweroff" {
halt
}
'';
};
networking.hostName = "puzzlevision"; networking.hostName = "puzzlevision";
@ -90,6 +96,10 @@
# Configure console keymap # Configure console keymap
console.keyMap = "de"; console.keyMap = "de";
# Enable the TLP service for improved battery management
services.tlp.enable = true;
services.power-profiles-daemon.enable = false;
# Enable CUPS to print documents. # Enable CUPS to print documents.
services.printing.enable = true; services.printing.enable = true;
@ -111,34 +121,23 @@
# Enable docker # Enable docker
virtualisation.docker.enable = true; virtualisation.docker.enable = true;
# Enable touchpad support (enabled default in most desktopManager).
services.xserver.libinput.enable = true;
# Configure keymap in X11 # Configure keymap in X11
services.xserver = { services.xserver = {
xkb.layout = "de"; xkb.layout = "de";
xkb.variant = ""; xkb.variant = "";
}; };
# Configure fish as the default shell
environment.shells = with pkgs; [ fish ];
users.defaultUserShell = pkgs.fish;
programs.fish.enable = true;
# Define a user account. # Define a user account.
users.users = { users.users = {
jo = { jo = {
isNormalUser = true; isNormalUser = true;
description = "Jo"; description = "Jo";
extraGroups = [ "networkmanager" "wheel" "docker" "tty" "dialout" ]; extraGroups = [ "networkmanager" "wheel" "docker" "tty" "dialout" ];
packages = with pkgs; [
spotify
qflipper
wineWowPackages.waylandFull
vesktop
avra
avrdude
jetbrains.phpstorm
teams-for-linux
enpass
thunderbird
kde-rounded-corners
];
}; };
work = { work = {
@ -161,8 +160,6 @@
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
}; };
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
nano nano
firefox firefox
@ -172,6 +169,9 @@
# For development # For development
git git
bun bun
# Home manager
home-manager
]; ];
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion

View file

@ -3,4 +3,5 @@
{ {
# List your module files here # List your module files here
# my-module = import ./my-module.nix; # my-module = import ./my-module.nix;
desktop = import ./desktop;
} }

View file

@ -0,0 +1,16 @@
{
inputs,
lib,
config,
pkgs,
...
}: {
# Enable the x11 windowing system
services.xserver.enable = true;
# Enable Cosmic DE
services.desktopManager.cosmic.enable = true;
# Enable Cosmic greeter
services.displayManager.cosmic-greeter.enable = true;
}

View file

@ -0,0 +1,5 @@
{
kde = import ./kde.nix;
gnome = import ./gnome.nix;
cosmic = import ./cosmic.nix;
}

View file

@ -9,6 +9,6 @@
services.xserver.enable = true; services.xserver.enable = true;
# Enable the GNOME Desktop Environment. # Enable the GNOME Desktop Environment.
services.xserver.displayManager.gdm.enable = true; services.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true; services.desktopManager.gnome.enable = true;
} }

View file

@ -7,16 +7,13 @@
}: { }: {
# You can import other home-manager modules here # You can import other home-manager modules here
imports = [ imports = [
# If you want to use home-manager modules from other flakes (such as nix-colors):
# inputs.nix-colors.homeManagerModule
inputs.plasma-manager.homeManagerModules.plasma-manager inputs.plasma-manager.homeManagerModules.plasma-manager
]; ];
nixpkgs = { nixpkgs = {
# You can add overlays here
overlays = []; overlays = [];
# Configure your nixpkgs instance # Configuring nixpkgs instance
config = { config = {
allowUnfree = true; allowUnfree = true;
@ -37,15 +34,44 @@
workspace = { workspace = {
clickItemTo = "select"; clickItemTo = "select";
iconTheme = "Tela-Blue-Dark"; iconTheme = "Tela-blue-dark";
}; };
}; };
home.packages = with pkgs; [
kdePackages.sierra-breeze-enhanced
spotify
qflipper
wineWowPackages.waylandFull
vesktop
avra
avrdude
jetbrains.phpstorm
teams-for-linux
enpass
thunderbird
kde-rounded-corners
];
# home.file.".config/gtk-4.0/gtk.css".source = "${orchis}/share/themes/Orchis-Green-Dark-Compact/gtk-4.0/gtk.css"; # home.file.".config/gtk-4.0/gtk.css".source = "${orchis}/share/themes/Orchis-Green-Dark-Compact/gtk-4.0/gtk.css";
# Enable home-manager and git # Enable home-manager
programs.home-manager.enable = true; programs.home-manager.enable = true;
programs.git.enable = true;
# Enable and configure git
programs.git = {
enable = true;
userEmail = "reckers.johannes@proton.me";
userName = "Jo";
# Enable git-credential-helper
extraConfig = {
credential.helper = "${
pkgs.git.override { withLibsecret = true; }
}/bin/git-credential-libsecret";
};
};
# Nicely reload system units when changing configs # Nicely reload system units when changing configs
systemd.user.startServices = "sd-switch"; systemd.user.startServices = "sd-switch";