1
0
Fork 0

Compare commits

..

6 commits

Author SHA1 Message Date
6ffc1e1811 Temporarily removed rustdesk
had to temporarily remove rustdesk because rebuild failed.
See:
https://discourse.nixos.org/t/rebuild-failed-unable-to-checkout-from-https-github-com-fufesou-rdev/49373
2024-07-21 09:06:17 +02:00
4e211e0cd2 Added hardware profile for p14s
Added hardware profile for p14s (Lenovo Thinkpad P14s
2024-07-21 09:03:56 +02:00
d0a4bedfa9 Temporarily removed cura
I had to temporarily remove cura to allow the system to rebuild.
See:
https://discourse.nixos.org/t/issue-building-nixos-due-to-sip-package/48702
2024-07-21 00:42:58 +02:00
7e54918ed4 Removed config option sound
Config option sound is depricated
2024-07-15 21:06:02 +02:00
b51e9b7a12 Update 2024-07-15 20:55:23 +02:00
4957d21a97 Added calculator 2024-07-04 22:58:57 +02:00
5 changed files with 19 additions and 11 deletions

12
flake.lock generated
View file

@ -170,11 +170,11 @@
]
},
"locked": {
"lastModified": 1719677234,
"narHash": "sha256-qO9WZsj/0E6zcK4Ht1y/iJ8XfwbBzq7xdqhBh44OP/M=",
"lastModified": 1720045378,
"narHash": "sha256-lmE7B+QXw7lWdBu5GQlUABSpzPk3YBb9VbV+IYK5djk=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "36317d4d38887f7629876b0e43c8d9593c5cc48d",
"rev": "0a30138c694ab3b048ac300794c2eb599dc40266",
"type": "github"
},
"original": {
@ -206,11 +206,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1719506693,
"narHash": "sha256-C8e9S7RzshSdHB7L+v9I51af1gDM5unhJ2xO1ywxNH8=",
"lastModified": 1720031269,
"narHash": "sha256-rwz8NJZV+387rnWpTYcXaRNvzUSnnF9aHONoJIYmiUQ=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "b2852eb9365c6de48ffb0dc2c9562591f652242a",
"rev": "9f4128e00b0ae8ec65918efeba59db998750ead6",
"type": "github"
},
"original": {

View file

@ -13,6 +13,9 @@
# Stylix - system-wide colorscheming and typography for NixOS
# See: https://github.com/danth/stylix
stylix.url = "github:danth/stylix";
# NixOS profiles to optimize settings for different hardware
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
};
outputs = { self, nixpkgs, home-manager, stylix, ... }@inputs: {
@ -33,6 +36,10 @@
modules = [
stylix.nixosModules.stylix ./hosts/p14s/configuration.nix
# Model picked up from
# https://github.com/NixOS/nixos-hardware/blob/master/flake.nix
nixos-hardware.nixosModules.lenovo-thinkpad-p14s-amd-gen2
# Home-Manager
#inputs.home-manager.nixosModules.default
home-manager.nixosModules.home-manager {

View file

@ -68,7 +68,7 @@
services.printing.enable = true;
# Enable sound with pipewire.
sound.enable = true;
#sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
@ -121,7 +121,7 @@
# Temporarily allow certain unsafe packages
nixpkgs.config.permittedInsecurePackages = [
#"electron-27.3.11" # 2024-06-16: EOL electron for logseq
"electron-27.3.11" # 2024-06-16: EOL electron for logseq
"electron-28.3.3" # 2024-06-29: EOL electron for logseq
];

View file

@ -56,7 +56,7 @@
amfora # Gemini terminal browser
lagrange # Graphical Gemini client
linphone
rustdesk
#rustdesk
zoom-us
profanity # CLI XMPP client
element-desktop # GUI matrix client
@ -68,6 +68,7 @@
libreoffice-fresh
drawio
evince # PDF viewer
galculator
# Graphics
gimp
@ -96,7 +97,7 @@
# 3D Printing
freecad
openscad
cura
#cura
# Games
dosbox-staging

View file

@ -107,5 +107,5 @@
};
};
sound.enable = true;
#sound.enable = true;
}